Viewing 15 posts - 16 through 30 (of 270 total)
Sorry no. Fortunately mine haven't gone wrong yet. But i tried it one of my dev boxes and
RESTORE DATABASE mytestdb WITH RECOVERY
worked fine on my mirror partner as it...
May 1, 2007 at 11:45 am
Oops I meant 2005 just my typing again
David
May 1, 2007 at 11:38 am
Just run restore with recovery against the database that will bring it online and then you can drop it.
David
May 1, 2007 at 5:40 am
In 2004 you query sys.sql_modules
David
May 1, 2007 at 5:31 am
For the server 2005 stuff you should look at the performnace dashboard reports that came out with sp2. Oh and they do only work with sp2.
and there is a...
April 26, 2007 at 3:07 pm
You're correct a full database backup will not truncate the log you do have to run a seperate transaction log backup to so this.
David
April 25, 2007 at 6:47 am
Erik
At the moment your trigger will fire whenever any column is updated so I would modify your trigger in one of two ways depending on how you update your table....
April 22, 2007 at 11:40 am
Thats quite interesting David I had never though of using CASE like that in the where clause of a query.
David
April 20, 2007 at 12:24 pm
I am very sure that you cannot use the CASE function in the where clause of a query
Why do you not work this out using conditional logic before the query...
April 19, 2007 at 2:48 pm
Yup you can detach and attach to your hearts content.
David
April 19, 2007 at 2:01 pm
It is also recommmended to run dbcc checkdb with data_purity on each database immediately after you upgrade.
You should also remember to update the statitsics on your databases afetr the upgrade...
April 19, 2007 at 1:39 pm
There's good article by Erland Sommarskog on this where he compares all the different methods for doing this
http://www.sommarskog.se/arrays-in-sql-2005.html#iterative
David
April 19, 2007 at 12:25 pm
CREATE SCHEMA myviews with authorization dbo;
CREATE VIEW dbo.nastyview
AS .....
ALTER schema myviews TRANSFER dbo.nastyview
David
April 19, 2007 at 7:16 am
These two threads may help you
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1269577&SiteID=1
http://support.microsoft.com/default.aspx/kb/929772
hth
David
April 19, 2007 at 7:04 am
There's a nice wee article here
which explains the mess theat is SP2.
hth
David
April 16, 2007 at 10:34 am
Viewing 15 posts - 16 through 30 (of 270 total)