Forum Replies Created

Viewing 15 posts - 61 through 75 (of 790 total)

  • RE: isql command problem

    You can try a switch like -s"" to reduce the column separator to nothing, which will remove the leading space, but the consequence of this is that no separator will...


    Cheers,
    - Mark

  • RE: Job problem

    From the xp_smtp site (http://sqldev.net/xp/xpsmtp.htm)....

     

    Note: SQL Server 7.0 and Windows NT 4.0 usage

    When using SQL Server 7.0 on Windows NT 4.0, you need to install...


    Cheers,
    - Mark

  • RE: New SQL Server Editor / IDE

    A cool feature would be "free to all sqlservercentral members".


    Cheers,
    - Mark

  • RE: Another SQL Question -- Please Reply

    select replace(name, 'Pack of', 'Case of')

    FROM         dbo.PRODUCT

    WHERE     (NAME LIKE '%pack of%')


    Cheers,
    - Mark

  • RE: Deleting transaction log

    If using Profiler you may want to start with monitoring "Log File Auto Grow" (and use the filter to restrict monitoring to the database in question).

    Once you've narrowed down WHEN...


    Cheers,
    - Mark

  • RE: Deleting transaction log

    Martin,

    A detach/attach will create a shiny new transaction log file.  I'm assuming here that you have just one data (mdf) and one transaction log (ldf) file for this database.

    To be...


    Cheers,
    - Mark

  • RE: Question of the Day for 01 Jun 2004

    ...and my newsletter says that yesterday's question was... "Which of the following is not a phase in DTS' multiphase data pump...".  Was it??


    Cheers,
    - Mark

  • RE: Question of the Day for 01 Jun 2004

    alzdba, you're not alone.  someone's answering my questions for me too.... AND doing it rather badly.


    Cheers,
    - Mark

  • RE: SQL Server Wont Restart After Hard Reboot

    Brent,

    I suggest you test the integrity of those files in your data folder:

    a) install sql2000 on another machine

    b) copy the mdf files relating to your user databases (ie....


    Cheers,
    - Mark

  • RE: Split backup across several drives ??

    I *usually* find it's a 50%-ish split.  If you want some control over the % (eg. 40%/60%) you may have to backup to 5 files (2 on one device and 3...


    Cheers,
    - Mark

  • RE: Split backup across several drives ??

    Just use 2 destinations in your BACKUP command.  eg.

    BACKUP DATABASE mydb TO DISK = 'G:\mssql\backup\mydb1.bak, DISK = 'H:\mssql\backup\mydb2.bak' with init


    Cheers,
    - Mark

  • RE: CASE Statement - Execution Flow Explanation

    Only one of the paths will be taken.  If it meets criteria#1 then it will not be tested for any others.

    Note: your CASE excludes an ELSE, therefore Field1 will be...


    Cheers,
    - Mark

  • RE: installation problem -- Enterprise Mgr. unable to register SQL Server

    if you're using EM on the actual SQL2000 server on which you've installed, try the registration with "from now on let's do this without the wizard", type in the server...


    Cheers,
    - Mark

  • RE: Setting Database READ ONLY/OFFLINE Using ALTER ... SET?

    No, SQL2000 spoilt us with its ALTER...SET...WITH ROLLBACK IMMEDIATE|AFTER

    In SQL 7 you have to KILL everyone using the database and then do the sp_dboption.

    BOL 7.0 confirms that the sysdatabases.status column...


    Cheers,
    - Mark

  • RE: SQL Server Setup - Recommendations

    It's preferable that they go on physically separate disk arrays, on a separate channel or even better, a separate controller.  Logical partitioning really does nothing in terms of performance or...


    Cheers,
    - Mark

Viewing 15 posts - 61 through 75 (of 790 total)