Forum Replies Created

Viewing 15 posts - 20,281 through 20,295 (of 26,484 total)

  • RE: How to backup DB Online

    You may be having network latency issues when attempting to restore a large database over the network. You may need to copy the file to a local directory on...

  • RE: Insert DateTime into SP

    mehmel (6/24/2009)


    hey hi

    anybody knows how do i insert the current DateTime into a SP?

    it seemed SYSDATETIME is not recognise built-in function name.

    DECLARE @livedate DATETIME;

    Insert into tb1 (ErrorDate)

    values(@livedate);

    select CONVERT (date,SYSDATETIME());

    First, what...

  • RE: Why Cursors so bad

    Start here[/url].

    Then here[/url].

    Any questions after that, ask right back here or in the discussion threads of the articles above.

  • RE: Query returning different count of rows in Enterprise and Standard

    The problem is that these queries may not be equivalent. What is the relationship between table1 and table2, is it a one to many relationship?

    Some sample data for the...

  • RE: How to backup DB Online

    I really don't think restoring a database over a linked server is a supported option. Pretty sure you need to be on the server where you are attempting the...

  • RE: Private message use

    Sometimes that isn't possible. A few that I have helped went private because they could not provide the actual code on an open forum due to company restrictions. ...

  • RE: Private message use

    IMHO, that reqiuires the participants to keep everything in the public threads. It is possible that some things may best be handled privately, but I would have to say...

  • RE: SQL Server Error message

    karthik_sql (6/24/2009)


    This is error i found fron SQL log

    Database backed up. Database: OperationsManager, creation date(time): 2008/12/17(13:46:51), pages dumped: 637164, first LSN: 476:1227796:1, last LSN: 477:10953:1, number of dump devices: 1,...

  • RE: SQL Server Error message

    Where did you get these error messages/alerts? If from a log, could you provide the actual message? Perhaps even a portion of the log before and after the...

  • RE: take differential backup in SQL SERVER 2008

    One, by changing your recovery model to full, you may soon find you transaction log file taking all your disk space. You now also need to start running transaction...

  • RE: Common questions asked in SQL Server DBA Interview

    Welcome to the SSC Community. We frequently go off on tangents from the original question, but usually those tangents are related in some way with the topic (unless it...

  • RE: Are the posted questions getting worse?

    Looks like he'd have deleted his posts if he could have. Doesn't help, however, where those posts had been quoted.

  • RE: Need to count the number of orders placed in one year.

    As it appears you were provided several approaches to solve your problem, which one did you select?

  • RE: query help

    You may want to spend some time reading BOL (Books Online, the SQL Server Help System).

    Change SP_RENAMEDB to EXEC SP_RENAMEDB

  • RE: query help

    Well, its your code. What was else for? If you don't need it, drop it.

Viewing 15 posts - 20,281 through 20,295 (of 26,484 total)