Viewing 15 posts - 16 through 30 (of 86 total)
Personally I'd recommend using log shipping. Take a full copy of the database, restore it to your remote location but do not recover the database (WITH NORECOVERY or the second...
July 1, 2006 at 8:46 pm
Couple of questions:
1) You are writing to a UNC path I assume
2) Are you using a SQL Server Maintenance Plan
3) This is SQL 2000 I assume?
4) Are you using a...
July 1, 2006 at 8:41 pm
That's also the safer way to do it. There are ways you can backup to a network share, but avoid the urge to do it directly. That will lengthen the...
June 30, 2006 at 3:46 pm
Actually I didn't word my comment about the use of C$ properly. What I meant to say is - don't use it. That's a dangerous security habit.
June 27, 2006 at 5:32 am
Could be an MDAC version issue - I'd check those versions. I'm assuming that the client versions of Access are the same patch level?
It could also be a client security...
June 23, 2006 at 10:30 am
Sigh. This is extremely difficult to explain.
In general, you have it correct. In Oracle there is a schema that is associated with a login. You can not change ownership of...
June 22, 2006 at 2:50 pm
Thanks for correcting my spelling. I feel stupid now, especially since I brought it up
June 20, 2006 at 9:36 am
So how many of us know what the mathematical terms "google" and "googleplex" represent? (yes, they are real mathematical terms)
June 19, 2006 at 8:25 pm
Yup, WITH MOVE works for everything except moving TempDB, which is moved with the ALTER DATABASE statement.
One caveat with TempDB - make sure Model exists before you attempt to move...
June 17, 2006 at 8:58 pm
I would add that you should restore the system databases FIRST, and I would agree with the order you suggest.
Be aware that once you restore Master, you may see...
June 17, 2006 at 9:31 am
I assume the torn pages were on the E: partition only. If you keep the drive label the same, restoring to the same path from the last good backup setup...
June 15, 2006 at 11:19 pm
Log shipping should work without a problem, although mirroring probably will generate some difficulty. I haven't done either, although given the way log shipping works ( a log backup copied...
June 15, 2006 at 11:14 pm
Ah. With 2005 they've changed the certification paths. MCTS is the base technology test for any additional certifications. If you wanted to get the profession database developer certification, there's 2...
May 3, 2006 at 8:05 am
In order to use table names or columns as a parameter in a query, you have to build a string and execute as dynamic sql. E.g.:
Declare @SQLStatement Varchar(100)
Declare @tablename varchar(20)
set...
May 2, 2006 at 11:28 pm
If you go through the items covered at http://www.microsoft.com/learning and feel comfortable with it, you should be OK. Measureup.com has an online test simulator that is pretty good. As...
May 2, 2006 at 11:25 pm
Viewing 15 posts - 16 through 30 (of 86 total)