Forum Replies Created

Viewing 15 posts - 16 through 30 (of 37 total)

  • RE: Which SQL Server book now?

    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...

  • RE: How do you capture the error string in tsql?

    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?

  • RE: Working with MSSQL and Oracle

    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...

  • RE: Sharing of cross db triggers across 2 servers.

    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?

  • RE: SQL 6.5 and TempDB

    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...

  • RE: How to merge two tables (update/insert)?

    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...

  • RE: Sql Server Memory

    Are you running the Standard or Enterprise edition of SQL Server? The Standard edition cannot use more than 2GB.

    JM

  • RE: Monitoring Transaction Log Size

    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...

  • RE: Duplicating SQL Server 7 database

    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...

  • RE: Local ===> Domain User Account

    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...

  • RE: Duplicating SQL Server 7 database

    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,...

  • RE: Named Instances On a Cluster

    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...

  • RE: Duplicating SQL Server 7 database

    Can you post the error message you are getting?

    JM

  • RE: Enterprise Manager file name

    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...

  • RE: Duplicating SQL Server 7 database

    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

Viewing 15 posts - 16 through 30 (of 37 total)