Viewing 15 posts - 121 through 135 (of 235 total)
Hi,
I typed the error code into google and got this information from support.microsoft.com
"DESCRIPTION: Error: 7105, Severity: 22, State: 6 Page (1:3507395), slot 5 for text, ntext, or image node does...
April 17, 2006 at 1:23 am
Hi,
If you take 50 million rows out of the table then I would suspect that the stats will need updating. The execution plan may even tell you that the stats...
April 13, 2006 at 1:24 am
Hi,
suggest you use a searched CASE statement
See BOL or
http://msdn2.microsoft.com/en-us/library/ms181765.aspx
Each column can be a separate case statement
SELECT
CASE WHEN <condition1> THEN <value> ELSE NULL END,
CASE WHEN <condition2> THEN <value> ELSE NULL END
......
April 12, 2006 at 1:19 am
I think a bracket has been misplaced somehow, you had four arguments in DateAdd(). I also added a space at the front of the ' 07:00:00'
...
convert(datetime,convert(varchar(10),dateadd(dd,-1,getdate()),101)+ ' 07:00:00')
David
April 12, 2006 at 1:09 am
Ok,
My logic was that if there was a gap in employment, then the end date of the previous employment period must be less than the start of the next employment period....
April 7, 2006 at 2:25 am
Hi
If you search for parameter query in the Microsoft Excel Help you should be able to find the information you need. Here is the information I found in Excel 2003...
April 5, 2006 at 1:32 am
An interesting error message nonetheless, because in SS2K you can't use really useful system functions like getdate() from within a UDF.
...even more annoying, you can't even pass getdate() into a...
April 4, 2006 at 3:11 am
I remember a long time ago, sitting next to a DBA 'guru', flown in specially from Frankfurt, who was setting up a view for a enterprise systems management system I was...
April 4, 2006 at 3:06 am
There are schemas in a limited form in SQL Server 2000. Seem to be a way to create objects and grant permissions in a single logical transaction...
BOL says
"CREATE SCHEMA provides a...
March 22, 2006 at 7:01 am
Knowing nothing about how schemas in SQL 2K, I guessed you would get a syntax error, wrongly as it turned out. But when I tried the script, it turned out...
March 22, 2006 at 1:40 am
Hi,
you could use a searched case function to check whether there was a space in the contact1.contact field. If there was no space you could either set contact2.uexfield1 to the entire contact1.contact field...
March 21, 2006 at 1:34 am
Well I learned something...
I tried comparing the results of the following in QA:
SELECT LEN(' ') returns 0 (all blanks are trimmed from the expression)
SELECT DATALENGTH(' ') returns 6 (6 blanks)
SELECT...
March 10, 2006 at 2:16 am
Hi,
do you have a MAPI client (e.g. outlook)installed on the server. Try logging in as the account which runs the SQL Server Agent and opening the MAPI client to see...
March 9, 2006 at 1:21 am
Hi,
If my understanding is correct, Table 3 is effectively a CROSS JOIN or cartesian between Table 4 and selected rows from Table 1. You could do this with a VIEW, without...
March 9, 2006 at 1:11 am
Steve,
be sure your SINs will find you out.
Or are you just being obtuse?
David
March 1, 2006 at 2:07 am
Viewing 15 posts - 121 through 135 (of 235 total)