Viewing 15 posts - 46 through 60 (of 314 total)
You should not create/alter a table thru procedure. What happens when you run the procedure twice?
July 30, 2009 at 4:14 am
Why dont you wrap it as single procedure?
July 30, 2009 at 4:02 am
May 15, 2009 at 2:09 am
Other uses of Row_number() function
http://sqlblogcasts.com/blogs/madhivanan/archive/2007/08/27/multipurpose-row-number-function.aspx
May 12, 2009 at 4:59 am
Ramesh (5/8/2009)
declare @DateTime DATETIME
declare @tablename varchar(100)
declare @sql nvarchar(4000)
create table #temp (starttime datetime)
-- Using sp_executesql
set @sql = 'select @DateTime...
May 8, 2009 at 8:23 am
You may need to read about Normalization
May 8, 2009 at 7:54 am
Also read about sp_executesql in SQL Server help file
May 8, 2009 at 7:52 am
dndaughtery (5/7/2009)
Never ming the above question. They were actually wanting to calculate a percentile of the values so if someone could advise on how to go about calculating a percentile?
Post...
May 8, 2009 at 3:20 am
frecal (5/7/2009)
is it possible to create a Unique Column in view. similar to an autoincrementing columnthanks
Also see what you can do with row_number() function
http://sqlblogcasts.com/blogs/madhivanan/archive/2007/08/27/multipurpose-row-number-function.aspx
May 8, 2009 at 3:11 am
Also refer
http://sqlblogcasts.com/blogs/madhivanan/archive/2008/08/27/dynamic-pivot-in-sql-server-2005.aspx
May 8, 2009 at 3:07 am
Viewing 15 posts - 46 through 60 (of 314 total)