Viewing 15 posts - 1,726 through 1,740 (of 5,356 total)
Is it a 'good and safe' practice to update the system tables in the msdb?
No! I would stay away from it unless being told so and guided by Microsoft PSS.
November 23, 2004 at 1:26 pm
They will be nicely executed one after the other.
![]()
November 23, 2004 at 12:39 pm
To a certain extend you can read about it on BOL at CREATE TABLE under the Temporary Table section.
November 23, 2004 at 12:37 pm
November 23, 2004 at 11:40 am
What about http://www.solidqualitylearning.com/default.aspx?lang=en ?
There are quite a few very knowledgeable people among their mentors
http://www.solidqualitylearning.com/aboutUs.aspx
![]()
November 23, 2004 at 8:01 am
See, if this helps:
http://www.microsoft.com/resources/documentation/sql/2000/all/reskit/en-us/part3/c1161.mspx
November 23, 2004 at 7:42 am
They error message is pretty self-describing. Index ID=1 means the clustered index is rebuild. That in turn could mean that all non-clustered indexes are also internally rebuild. Depending on how...
November 23, 2004 at 7:38 am
If I see this right, you want to query for a specific month, right?
If so, why extract dateparts and convert anyway? You could also query for something like this:
WHERE
< your...
November 23, 2004 at 1:30 am
Another one:
SELECT REPLACE(STR(DATEPART(mm,GETDATE()),2), ' ', '0')
![]()
November 23, 2004 at 1:21 am
Well, while I somehow believe your data model has some kind of flaw, you might want to have a look at
http://www.sommarskog.se/dynamic_sql.html
http://www.sommarskog.se/arrays-in-sql.html
http://www.sommarskog.se/dyn-search.html
Should give you some ideas how you...
November 23, 2004 at 1:16 am
Either DBCC CHECKDB or DBCC CHECKCATALOG.
I would also look for any entries in log files, check for hardware issues. Since the index ID is 12 this is a non-clustered index....
November 23, 2004 at 12:46 am
I said, the example isn't the best ![]()
Either that way or to try and avoid the UDF completely. However, you might want to read...
November 22, 2004 at 8:34 am
Sorry, UDF stands for User-Defined Functions.
And no, you shouldn't get rid of them, but rather carefully evaluate your alternatives given.
While this is not the best example, it demonstrates...
November 22, 2004 at 7:31 am
Okay, I hope I didn't get lost inside your queries, but to me it seems that you need to include the test for Error1 !='' in the WHERE clause. And...
November 22, 2004 at 4:49 am
Viewing 15 posts - 1,726 through 1,740 (of 5,356 total)