Viewing 15 posts - 3,226 through 3,240 (of 5,394 total)
vinaseetha87 (5/16/2011)
@Loggeddt is Used to filter the data
Hmmm. Yes, this was clear, but HOW are you filtering data?
Should the query return rows that match the date exactly or are you...
May 16, 2011 at 5:54 am
Here is the culprit:
OR(ISNULL(LoggedDt,'''')) LIKE '%' + @LoggedDt + '%'
You should convert @LoggedDt to some string representation before concatenating to '%'.
However, this is not a good idea from a performance/data...
May 16, 2011 at 5:46 am
Probably your post got truncated, but I see no question here.
Can you clarify please?
May 16, 2011 at 5:43 am
I guess some hidden scheduled task is working on the database during the weekend.
I would suggest capturing statements with a server-side trace and look at the results on monday.
May 16, 2011 at 4:31 am
It could be anything, we need much more detail to advise sensibly.
First of all I would check for locks and find the locking leader, then I would try to inspect...
May 16, 2011 at 3:07 am
Jeff's latest article is great, and the discussion rocks.
If you haven't checked it yet, go and have a look!
I love this community.
May 6, 2011 at 5:12 pm
This thread is getting more and more exciting.
Awesome.
May 6, 2011 at 5:10 pm
Brandie Tarvin (5/6/2011)
Editor's Note:
May 6, 2011 at 6:14 am
OK, now it definitely works.
I got it working after a long fight with permissions, policies, and registry keys.
...and I thought that a DBA didn't need to be a Windows...
May 3, 2011 at 8:48 am
TheSQLGuru (5/2/2011)
Great stuff. I too would like to see the CLR code.
+1
The queue starts to overflow...
May 2, 2011 at 10:37 am
Jeff, your article is great!
The final splitter function could have been 3 times slower than the original one, and the article would have been memorable anyway. It's a tale of...
May 2, 2011 at 3:33 am
Is that an issue? Does the system respond slowly?
If so, you could limit sql server max memory:
EXEC sys.sp_configure N'max server memory (MB)', N'14336' -- 14 GB
GO
RECONFIGURE WITH OVERRIDE
GO
This way you...
April 27, 2011 at 9:11 am
Restarting the service is not a good idea. SQL Server will have to build its cache from scratch, including cached plans.
I would suggest limiting SQL Server memory if there's an...
April 27, 2011 at 4:31 am
The script is complete in my last post, you will only need a Tally table.
You can grab one here: http://www.sqlservercentral.com/articles/T-SQL/62867/
Hope this helps
Gianluca
April 26, 2011 at 7:59 am
nathan.rudy (4/26/2011)
April 26, 2011 at 7:16 am
Viewing 15 posts - 3,226 through 3,240 (of 5,394 total)