Viewing 15 posts - 121 through 135 (of 596 total)
You are right. Script out the jobs and then add them back after the rebuild.
March 20, 2008 at 7:39 am
Use the Rebuild Wizard (Rebuildm.exe), located in the \Program Files\Microsoft SQL Server\80\Tools\BINN directory. This can be used to pick a new collation. In any case you still...
March 17, 2008 at 3:34 pm
I have to agree the third statement just produces the wrong value. The 2nd is closest although it should divide by 365.25 rather than 365 but the difference between...
March 6, 2008 at 8:36 am
After installing SP2 take a look at http://www.microsoft.com/downloads/details.aspx?FamilyId=1d3a4a0d-7e0c-4730-8204-e419218c1efc&displaylang=en
These Performance reports are very nice
February 28, 2008 at 1:14 pm
As long as the defrag software can handle the file being allocated to SQL (it must defrag via the Windows API) then there is no problem. I have been...
February 28, 2008 at 8:35 am
It shouldnt matter whether the database was detached to begin with. Do you see the database in Management Studio (EM)? If so get rid of it then...
February 11, 2008 at 9:33 am
Of course I want SP3 for 2005. There have been way too many HF released and they need to be rolled up into a SP.
February 1, 2008 at 7:41 am
Although it is very interesting to have a 'vanilla' database with no rows in all the tables, if you are doing this just to restore from somewhere else it is...
January 24, 2008 at 9:03 am
First select * from sysdatabases where name = 'model'
If this returns a NULL for the SID then try
sp_configure 'allow updates', 1
reconfigure with override
update sysdatabases
set sid = 0x01
where...
January 23, 2008 at 11:25 am
They look the same to me. The join between CLMASTER and CLCOLLBAL is an inner Join since you are joining on specific columns being equal and the Join...
January 21, 2008 at 9:44 am
look at the script http://www.sqlservercentral.com/scripts/Miscellaneous/61368/
as a tool that may help you. If the collation on a particular database is wrong it doesn't imply that all the tables...
January 16, 2008 at 8:11 am
Nice code
I think the messages like you describe show up in the errors collection as opposed to the resultset. . Errors can be generated by a method call or...
December 24, 2007 at 9:54 am
Just want to make sure you are refreshing your EM or MS screen. Right click on the database after the restore says it finished and select refresh. If...
December 21, 2007 at 7:52 am
Be careful with the growth rate. Growth 1MB at a time is a very small amount. Each time more than 1 mb is added the file will grow...
December 14, 2007 at 8:21 am
Wow good post Andras, we must have been typing our reply simultaneously
Great Minds think alike
or is it Fools don't differ
I can never remember those aphorisms
😛
December 13, 2007 at 8:58 am
Viewing 15 posts - 121 through 135 (of 596 total)