Script SQL Server

Temporary virtual table - Tabela Temporaria < and > SQL2008

--// Compatible with all version Select Name, MiddleName, LastName From (  Select Name = 'Blog1', MiddleName = 'Do1', LastName = 'Leandro1' UNION Select Name = 'Blog2', MiddleName = 'Do2', LastName = 'Leandro2' ) tbName   --// Compatible with >= 2008 Select Name, MiddleName,...

NTILE (Transact-SQL) - Creating Group by Line

Para exibir o arquivo em inglês, marque a caixa de seleção Inglês. Você também pode exibir o texto em inglês em uma janela popup, movendo o ponteiro do mouse sobre o texto. Tradução Inglês NTILE (Transact-SQL) Outras versões Distribui as linhas de uma partição ordenada em um número de grupos...

SQL Server 2012 – Funções Analíticas (LAG, LEAD, FIRST_VALUE, LAST_VALUE)

Neste post vou falar de algumas funções Analíticas que foram inseridas no SQL Server 2012 que são elas LAG, LEAD, FIRST_VALUE e LAST_VALUE. Estas funções vieram para resolver problemas que tínhamos anteriormente para exibir, por exemplo, o Valor de uma coluna na linha anterior na posição atual do...

SQL 2012 - Funções LEAD e LAG

  Neste post irei apresentar mais 2 novas funções do SQL 2012, LEAD e LAG, que fazem parte das Analytic Functions. LEAD - A function LEAD é utilizada para ler o valor da próxima linha. Quando a próxima linha não existir retorna NULL. LAG - A function LAG é similar a function LEAD,...

SQL 2012 - Funções STUFF

--=============================================================== SQL 2012 - Funções STUFF --===============================================================   The STUFF string function inserts a string into another string.  It deletes a specified length of characters in the...

Deploy SSIS by Command DOSand DTUTIL

    @ECHO ================================================================== @ECHO --// SSIS Deploy   @ECHO ==================================================================   IF NOT EXIST C:\SSIS GOTO SSIS              ...

Template SQL Server - sp_ExecuteSQL Output Variable

  DECLARE @IKC VARCHAR(50), @TSQL NVARCHAR(500), @MDResult NVARCHAR(500), @ParmDefinition NVARCHAR(500), @Result NVARCHAR(500)   SET QUOTED_IDENTIFIER OFF   SET @IKC = '80700-08396-70846-400143'   Set @TSQL = "SELECT @Result = MED_SUB_ID FROM...

Template SQL Server - Simple Cursor

  Declare @tbTMP Table (chProductNumber VARCHAR(15)) Declare @chProductNumber VARCHAR(15)     Insert @tbTMP  Select 'QCN14AU10' Union ALL Select 'QCN14AU11'     Declare CUR CURSOR FOR Select * From @tbTMP     Open...

Template SQL Server - Declaration Temporary Memory Table

Declare @tbTMP Table (chProductNumber VARCHAR(15))

How do I .... grant access permissions for SSIS to users?

SSIS access permissions are managed via Component Services. It is the DCOM object named MSDTSServer. Here are the steps to follow.    Component Services -> Computers -> My Computer -> DCOM Config -> MSDTSServer   Right click on MSDTSServer   Click...

<< 4 | 5 | 6 | 7 | 8 >>