Viewing 15 posts - 271 through 285 (of 447 total)
steveb (12/9/2008)
SanjayAttray (12/9/2008)
Both getdate() and CURRENT_TIMESTAMP returns same value. So, why two functions for same result?Can some one describe diff. between both function?
CURRENT_TIMESTAMP is ANSI code
GETDATE is...
December 9, 2008 at 10:23 am
Jerry Hung (12/9/2008)
Alvin Ramard (12/9/2008)
I'm starting to wonder if one may be going away in future versions.
Not for a long time I hope, GETDATE() and GETUTCDATE() are too widely used
I...
December 9, 2008 at 10:19 am
Both getdate() and CURRENT_TIMESTAMP returns same value. So, why two functions for same result?
Can some one describe diff. between both function?
December 9, 2008 at 10:15 am
No same job can run concurrently in any version. When a job is running and not completed you cannot run it again in between period unless it gets completed.
Check...
December 5, 2008 at 1:49 pm
Good collection of freeware. Will definitely try couple of them in Administration and Monitoring.
Thanks for all the info.
December 4, 2008 at 8:02 am
xp_cmdshell is by default disabled in SQL server 2005 unlike SQL Server 2000. You have to enable it by Sp_configure or by configuration manager.
EXEC master.dbo.sp_configure 'show advanced options', 1
RECONFIGURE
EXEC...
November 6, 2008 at 1:19 pm
Got answer right by fluke. Wasn't sure if I should select his option or not. Though I thought this should be in.
-- This option may not be specified...
November 5, 2008 at 12:12 pm
CREATE INDEX NotAllowed
ON Dest (Value)
WITH(IGNORE_DUP_KEY = ON);
go
Msg 1916, Level 16, State 4, Line 1
CREATE INDEX options nonunique and ignore_dup_key are mutually exclusive.
ignore_dup_key should come...
November 5, 2008 at 12:10 pm
http://blogs.msdn.com/craigfr/archive/2006/10/25/the-parallelism-operator-aka-exchange.aspx
http://blogs.msdn.com/craigfr/archive/2006/11/16/parallel-hash-join.aspx
And here is a good article about parallelism in sqlservercentral.
http://www.sqlservercentral.com/articles/Configuring/managingmaxdegreeofparallelism/1029/
Also, see the discussion on this article.
November 3, 2008 at 3:04 pm
hydbadrose (11/3/2008)
November 3, 2008 at 3:00 pm
After taking the backup of transaction log, all transactions are backed up and log file get empty but size would not reduce.
That you have to do using this command.
use database
go
DBCC...
November 3, 2008 at 2:52 pm
Either use third party tool like SQL diagnostic manager or else you can run profiler for a week on those particular databases and collect data into a table. If...
October 31, 2008 at 2:39 pm
Check linked server properties and check security context.
Most probably this would be an issue and if you have access on both server then select this option - Be made using...
October 31, 2008 at 2:35 pm
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=108800&SiteID=1
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=292689&SiteID=1
I think disabling VIA is the only and easiest option.
October 31, 2008 at 2:29 pm
No. Server reboot is not needed. But while installing SSIS, process will stop and restart MSSQLSERVICE.
October 31, 2008 at 2:26 pm
Viewing 15 posts - 271 through 285 (of 447 total)