Viewing 9 posts - 211 through 219 (of 219 total)
dawryn (11/26/2009)
I can't see anything about jobs there. The link seems to be not relevant to the question.
What is the use of a job if there is no service to...
November 26, 2009 at 3:10 am
Ref: Editions and Components of SQL Server 2005 - http://msdn.microsoft.com/en-us/library/ms144275%28SQL.90%29.aspx
I can't see anything about jobs there. The link seems to be not relevant to the question.
November 26, 2009 at 2:22 am
ZeroFusion (11/24/2009)
As for the length constraint - according to the MS SQL Data Types list, "Floating precision number data with the following valid values: -1.79E + 308 through -2.23E -...
November 24, 2009 at 3:00 am
Ol'SureHand (11/4/2009)
That is because the BACKUP command comes AFTER...
November 5, 2009 at 2:22 am
The correct answer is: A is '' (empty string), B is 'Chris'.
Try this code:
declare @name varchar(12)
select @name = 'Christopher'
select case when substring(@name,15,12) is null then 'NULL' else 'NOT NULL' end...
November 2, 2009 at 1:07 am
This behavior has been changed in MSSQL 2008 (see "model Database" in BOL 2008: http://msdn.microsoft.com/en-us/library/ms186388.aspx). Now the recovery model of 'model' database "depends on SQL Server edition".
Didn't find anything about...
October 20, 2009 at 12:03 am
As the column will hold only English language letters and digits, we don't need the additional bytes required by the national character data types
Not quite correct. You don't need to...
October 16, 2009 at 12:30 am
I am disappointed with the question, too.
If I copied the script into SSMS, I would get the right answer. Instead, I took a piece of paper and wrote binary 'ones'...
October 14, 2009 at 3:23 am
Viewing 9 posts - 211 through 219 (of 219 total)