Viewing 15 posts - 22,531 through 22,545 (of 59,072 total)
Start by examining the execution plan.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 31, 2014 at 10:16 am
From the article
Teams are mostly developer driven, iterate quickly with a very small or non existent operations teams.
Why does anyone think that's actually a change? People have been making...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 31, 2014 at 10:13 am
SqlStarter (10/30/2014)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 31, 2014 at 8:47 am
I had eye surgery today and can't see very well, yet. I'll have to get back to this. Hopefully, someone will jump in in my place because I'm...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2014 at 10:04 pm
Now we're cooking with gas! Well done! I had eye surgery today (lens replacement) and can't see so well yet and can't spend much time in front of...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 30, 2014 at 9:58 pm
tony28 (10/29/2014)
vincyf1 (10/29/2014)
My Suggestion would be to use Table Partitioning instead of new DB creation every year.
I know this function, but I tried one times if I learned sql 2years...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 8:02 pm
Just to know, how many possible values do you have for the Server_Excluded column? Does it allow NULLs, as well?
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 7:51 pm
It sounds like your app may have a connection leak (same symptoms as what we have at work but we can't change it... 3rd party hairball code). Less likely...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 7:49 pm
Thanks for the tip. I found the following website on the subject.
http://execsql.org/rs-scripter-tool-handy-tool-to-create-deployment-script-for-reporting-services
One of the steps is to provide a path the RS.exe file so I think it's purely an...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 6:31 pm
inayatkhan (10/29/2014)
create table #LD(ID int identity, LA_Type_ID int, LA_Value int, LID bigint unique, MText varchar(255))
insert into #LD values
(22901, 1652, 1231, 'ABC'),
(22901, 1652,...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 5:14 pm
Robert klimes (10/29/2014)
imfairozkhan (10/29/2014)
using calendar table is the only way???
you could dynamically create calendar table with recursive cte but I am not sure it would scale well on a large...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 1:28 pm
SqlScared (10/29/2014)
Thank you Gail and Gianluca. The data files are in separate filegroups so I'm out of luck.
Maybe not. Transfer some of the tables to the other file...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 1:17 pm
Alan.B (10/29/2014)
So I made the following change to Eirikur's function to so that it takes a pattern as a parameter:
Interesting... (our posts crossed paths). I'll take a look at...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 9:26 am
First, hats off to Eirikur Eiriksson for the reminders about the performance of dedicated rather than general purpose functions and the speed associated with integer comparisons rather than character-based comparisons....
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 9:24 am
Paul White (10/28/2014)
Jeff Moden (10/28/2014)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 29, 2014 at 9:10 am
Viewing 15 posts - 22,531 through 22,545 (of 59,072 total)