Viewing 15 posts - 1,321 through 1,335 (of 7,498 total)
Thank you for the feedback.
Knowing where to look is a good start for any assessment .
July 18, 2012 at 8:10 am
July 18, 2012 at 8:06 am
This is what I always use :
if OBJECT_ID('tempdb..#tmp_Restores') is null
begin
SELECT @@servername as ServerName
, r.command as [CMD_Type]
, r.start_time
, r.percent_complete
, dateadd(second, r.estimated_completion_time...
July 18, 2012 at 7:57 am
one of the worst practices is converting a datetime any other data type. Let alone to integer format DDMMYYYY !!!
It just looses all date characteristics and functions one can...
July 17, 2012 at 6:15 am
have a look at Roberts blog : http://www.sqlsoldier.com/wp/sqlserver/breakingdowntempdbcontention
that is if you're looking for contention issues.
Anther place to start can be :
July 13, 2012 at 5:15 am
How about:
select @dt [date as is]
, dateadd(yy, -1,@dt) [date-1Y]
, dateadd(wk, datediff(wk, 0, dateadd(yy, -1,@dt)), 0) ...
July 5, 2012 at 5:30 am
dwain.c (7/4/2012)
ALZDBA (6/29/2012)
dwain.c (6/28/2012)
Jeff Moden (6/28/2012)
dwain.c (6/27/2012)
I like this problem and wanted to contribute.Let other people in on the fun. 🙂 What does dbo.GenerateCalendar() look like?
Please don't laugh! ...
July 4, 2012 at 11:45 pm
to change the login mode option, your sqlinstance needed to restart - which happened because of your crash - so when exactly the registry value has been set .......
July 4, 2012 at 10:46 am
You can test this using the attached simple script and compare the generated plans and consumptions :w00t:
The last result set will contain the execution plans ... if they reside in...
July 2, 2012 at 5:04 am
dwain.c (6/28/2012)
Jeff Moden (6/28/2012)
dwain.c (6/27/2012)
I like this problem and wanted to contribute.Let other people in on the fun. 🙂 What does dbo.GenerateCalendar() look like?
Please don't laugh! ...
1) Keep...
June 29, 2012 at 12:12 am
just extract it and run the msi.
June 27, 2012 at 11:54 pm
arch .. you posted in a SQL2008 forum, hence the refs to it.
Anthony already provided the link to your solution 😉
/* SQL Server 2000 - sa password changes */
USE Master
GO
SELECT...
June 27, 2012 at 8:37 am
just as a side dish ... why is column datekey not a date column ?
May avoid conversions to take advantage of date functions.
( maybe that's all been covered in your...
June 27, 2012 at 7:15 am
Did you check this article http://www.sqlservercentral.com/articles/Security/87159/
or this thread : http://www.sqlservercentral.com/Forums/Topic988899-149-1.aspx
June 27, 2012 at 6:46 am
Viewing 15 posts - 1,321 through 1,335 (of 7,498 total)