Viewing 15 posts - 106 through 120 (of 447 total)
Dale Turley (11/11/2009)
WTF???There are some really useless and pointless questions on here sometimes... but this takes the biscuit!!
I had asked the same question for previous question on spatial data question....
November 11, 2009 at 8:31 am
A very Important command that anyone working on sql server should know (be it a developer or dba). It gives very basic onset information about database on server like
DB...
November 10, 2009 at 9:14 am
Nicely written Article, Alok.
Its always a good to read any article which had combination of enough code and to-the-point explanation in it.
November 9, 2009 at 10:48 am
Interesting question.
I got it right just because I executed it in SSMS and saw results. But without executing I would had selected option 6 also.
November 9, 2009 at 10:43 am
Interesting question. It succeeded on one server but failed on other. 'Cause the MSSQL\Backup directory is on F:\ drive instead of C:\.
Not sure if that was the...
November 5, 2009 at 9:14 am
Ol'SureHand (11/4/2009)
That is because the BACKUP command comes AFTER...
November 5, 2009 at 9:11 am
Execute this.
DECLARE
@p_SPID int,
@p_SQL nvarchar(2000)
DECLARE #cur_Processes CURSOR FOR
SELECT
p.SPID
----------> AND spid >= 51 (because spid's of 50 or less are reserved for internal use.)
FROM
master.dbo.sysprocesses...
October 30, 2009 at 9:04 am
On a Halloween day I expected a scary question than a routine one.
Does, Steve lost his sense of HUMOR ? π
Take it easy.
October 30, 2009 at 9:01 am
Damn. I missed the increment/seed part. Generally we used (1,1) for identity column and its (1,3) in the question.
October 29, 2009 at 9:27 am
Thanks for the article, Gail.
"When an index scan is done on the clustered index, itβs a table scan in all but name."
Then why do we see index scan and table...
October 26, 2009 at 8:50 am
Does any one uses mixed datetime styles in a single query like the above one ?
I haven't seen any.
October 26, 2009 at 8:41 am
For
1). Since the plan had full, differential and TLog backup steps SSMS will create 3 jobs each for one of its kind. You cna change schedule or manage...
October 22, 2009 at 10:23 am
Had used LiteSpeed and SQLSafe before and they both does compression, encryption. With LiteSpeed you can take backup and save file on different network.
ftp ? I doubt. Have...
October 22, 2009 at 10:15 am
Viewing 15 posts - 106 through 120 (of 447 total)