Viewing 15 posts - 16 through 30 (of 37 total)
A book that covers the basics very well is SQL Server 2000 DBA Survival Guide. Most books don't cover DTS or ActiveX scripting in much detail though. You...
November 14, 2003 at 12:04 pm
sysmessages only contains the generic error message, without references to the particular objects.
For example: Unclosed quote before the character string %.*ls.
Is that specific enough?
November 14, 2003 at 11:40 am
Thanks Greg. What version of Oracle are you working with?
I am planning on taking some online courses from Oracle University. That should help me get started.
Do you have...
November 14, 2003 at 11:33 am
This should be possible using linked servers. The downside however is that if the second server is unreachable, the whole transaction will fail.
Maybe someone knows of a workaround?
November 13, 2003 at 2:09 pm
David,
I found this link that might be of interest to you:
http://webdevelopment.developersnetwork.com/Articles.asp?Article=227
The suggested route is to make another device the default device and then switch the tempdb to RAM...
November 13, 2003 at 1:41 pm
Very similar to David's suggestion:
1. Put the data in a temporary table. 2. Join the tables and update the matching records in the destination table. 3. Join the...
November 13, 2003 at 11:43 am
Are you running the Standard or Enterprise edition of SQL Server? The Standard edition cannot use more than 2GB.
JM
November 13, 2003 at 10:49 am
If all you want is to be notified when the log reaches a certain size, you can create an alert based on a SQL Server performance condition. (SQLServer:Databases - Percent...
November 13, 2003 at 8:27 am
Did you detach the original files from SQL Server first? Here is what BOL says:
sp_attach_db should only be executed on databases that were previously detached from the database server...
November 13, 2003 at 8:20 am
If your servers are not part of a domain, you might need to create the same account on both of them. That way, loging in to the remote computer...
November 13, 2003 at 8:13 am
Typically you detach the database physical files (.mdf and .ldf) to move a database elsewhere. You then attach them in SQL Server to create a new database.
In your case,...
November 13, 2003 at 8:01 am
Make sure that you don't over-allocate memory, so set your min-max SQL Server memory settings accordingly for each instance.
Personally, I don't see much benefit from using several instances on the...
November 13, 2003 at 7:56 am
Can you post the error message you are getting?
JM
November 12, 2003 at 10:55 am
The file is a MMC snap-in (.msc extension).
The file is called 'SQL Server Enterprise Manager.MSC' and is located in the \Binn folder of your MSSQL installation (client or server).
Hope this...
November 12, 2003 at 9:44 am
Hmmm...I tested it in Query Analyser and it works. Did you type it all on one line in osql?
What version of SQL Server are you using?
Jean
November 12, 2003 at 9:35 am
Viewing 15 posts - 16 through 30 (of 37 total)