Data Warehouse; Extract Transform Load(ETL); ETL Framework components that help establish a common system for source logging, standardized etl steps, interaction with Unix, DOS, Informatica and SQL Server.
Search This Blog
Friday, January 18, 2013
Row Number: Quick TSQL Row_Number
Create a quick row number in a sql statement:
select ROW_NUMBER() OVER(ORDER BY [COLUMN] ASC/DESC) AS Row
,* from [TABLE])
No comments:
Post a Comment