Viewing 15 posts - 46 through 60 (of 315 total)
You can make use of PIVOT function
Failing to plan is Planning to fail
August 4, 2009 at 4:17 am
Failing to plan is Planning to fail
July 30, 2009 at 4:44 am
Try my suggestion here
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=59094
Failing to plan is Planning to fail
July 30, 2009 at 4:41 am
Also refer
http://sqlblogcasts.com/blogs/madhivanan/archive/2007/08/27/multipurpose-row-number-function.aspx
Failing to plan is Planning to fail
July 30, 2009 at 4:27 am
Use Import/Export wizard
Failing to plan is Planning to fail
July 30, 2009 at 4:19 am
You should not create/alter a table thru procedure. What happens when you run the procedure twice?
Failing to plan is Planning to fail
July 30, 2009 at 4:14 am
Why dont you wrap it as single procedure?
Failing to plan is Planning to fail
July 30, 2009 at 4:02 am
Also refer
http://sqlblogcasts.com/blogs/madhivanan/archive/2008/09/12/return-top-n-rows.aspx
Failing to plan is Planning to fail
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
Failing to plan is Planning to fail
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 = min(starttime) from '...
Failing to plan is Planning to fail
May 8, 2009 at 8:23 am
You may need to read about Normalization
Failing to plan is Planning to fail
May 8, 2009 at 7:54 am
Also read about sp_executesql in SQL Server help file
Failing to plan is Planning to fail
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...
Failing to plan is Planning to fail
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
Failing to plan is Planning to fail
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
Failing to plan is Planning to fail
May 8, 2009 at 3:07 am
Viewing 15 posts - 46 through 60 (of 315 total)