You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(adaptado de Fausto F. Branco em http://dba-sqlserver.blogspot.com.br/2009/11/gerar-cpf-valido.html)
6
+
7
+
# Descricao
8
+
View para gerars CNPJ alfanumérico
9
+
Você pode fazer um cross apply com e gerar um cnpj por linha.
10
+
Usado estes documentados como fonte do cálculo e validação: https://www.gov.br/receitafederal/pt-br/centrais-de-conteudo/publicacoes/documentos-tecnicos/cnpj
11
+
*/
12
+
13
+
USEmaster
14
+
GO
15
+
16
+
IFOBJECT_ID('dbo.vwGeraCNPJAlfa','V') ISNULL
17
+
EXEC('CREATE VIEW dbo.vwGeraCNPJAlfa as select 1 StubVersion')
0 commit comments