Viewing 15 posts - 196 through 210 (of 1,825 total)
Hi Dennis,
Thanks for clarifying the filestream issue, I did follow this up in the part 1 thread but didn’t here. Oops.
With regard to the functions, you are...
July 5, 2011 at 12:03 am
This *may* be more performant
Create proc Search @deparr datetime
as
declare @deparr datetime
Select @deparr = '20110501'
Declare @YearStart datetime
Declare @NextYear datetime
Select @YearStart = DATEADD(yy, DATEDIFF(yy,0,@deparr), 0)
Select @NextYear = dateadd(yy,1,@YearStart)
Select *
...
July 1, 2011 at 8:54 am
Hi Jerome,
Glad you enjoyed the series,
I cant confirm right now but im pretty sure the links i gave point to the correct AW database.
It may not of installed correct on...
July 1, 2011 at 7:04 am
Something tells me you are not a fan of AdventureWorks Joe 😉
June 29, 2011 at 1:17 pm
Possibly fulltext indexing would help you.
But your design is wrong , there is no magic bullet for this one.
Please post some sample data for further advice.
June 29, 2011 at 3:54 am
Thanks all,
Enjoyed doing it, now to find the next set of bad code to write about 🙂
June 29, 2011 at 2:54 am
wbrianwhite (6/28/2011)
I just looked at it now that it's up. It uses a temp table and a lot of outer apply functions and multiple CTEs. It is a...
June 29, 2011 at 2:44 am
Thanks Gail , I did wonder if the poster read past the first few lines.
June 28, 2011 at 3:19 pm
Tempted to crank sarcasm up to 11
http://www.sqlservercentral.com/Forums/FindPost1133245.aspx
Best left till the morning it think
June 28, 2011 at 2:37 pm
Thanks Jason,
It was a long hard slog to get it to this point.
Glad you enjoyed it
FYI : Part 2 is now active here http://www.sqlservercentral.com/articles/T-SQL/73889/
June 28, 2011 at 7:47 am
Agreeing with Jeff.
Reseeding is something you should rarely (if ever) need to do.
What are you trying to achieve ?
June 25, 2011 at 1:30 pm
An identity column automatically increments, can you explain your issue further ?
June 25, 2011 at 2:30 am
Did you add the index like i suggested a few days ago ?
June 22, 2011 at 12:34 pm
Viewing 15 posts - 196 through 210 (of 1,825 total)