Forum Replies Created

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

  • RE: Is this data lost?

    Thanks for all the responses.

    Problem I have is that lots of rows got inserted/deleted over the course of five days. Always it was insert/delete, so I'm thinking...

  • RE: Is this data lost?

    When you say "restore your database" do you mean from the original backup or from the one taken after the insert/delete occurred?

    As I'm typing that it sounds like a...

  • RE: Is this data lost?

    Sorry that was not quite correct.

    Here is the actual sequence.

    Database was backed-up/restored to this server.

    Data was inserted/deleted

    Full backup taken.

  • RE: Is this data lost?

    Hi,

    That's what I thought.

    I do have a full backup but as I'm trying to recover rows that were inserted and deleted within seconds I'm assuming they are gone for...

  • RE: Is this data lost?

    The database was created, the data inserted and then deleted and then a full database backup performed. There was no differential and/or transaction log backups performed.

  • RE: Collation problem.

    e4d4 (2/1/2013)


    Check, and find a one difference:

    DECLARE @Person TABLE (Name nvarchar(100)

    COLLATE SQL_Latin1_General_CP1_CI_AS);

    INSERT INTO @Person VALUES(N'Çaliskan Akdag');

    SELECT * FROM @Person;

    Ahhh, of course N''. Thanks!...

  • RE: Can't shrink physical logfile size.

    GilaMonster (1/29/2013)


    Grow that log file to something sensible, and make sure that the autogrow settings aren't the default.

    Hi, yes I will. It was just on a test version of...

  • RE: Can't shrink physical logfile size.

    SQLALX (1/28/2013)


    How to shrink transaction log file: http://bit.ly/XaDOQr

    Ok, I followed all the steps in that article and it did indeed shrink the logfile down to 1mb.

    So...

  • RE: Can't shrink physical logfile size.

    ScottPletcher (1/28/2013)


    SQL will tell you if/why it won't shrink the log:

    SELECT log_reuse_wait_desc, * --col name may be a little off, from memory, but it's at least close

    FROM sys.databases

    WHERE name =...

  • RE: Problem with backup via EXEC in procedure

    Ian Scarlett (1/11/2013)


    You should still see the output from select @sql even with the display of the out params.

    The fact that you can't see anything would lead...

  • RE: Problem with backup via EXEC in procedure

    Ah, sorry I see what you mean. I did put a select @sql in but nothing came back to SSMS, thin that might be because the procedure...

  • RE: Problem with backup via EXEC in procedure

    Hi,

    Yes the command works fine when copied out of the text visuaizer in VS2010 debugger into SSMS . The usp_DateParts_Get puts hyphens in the date, that's why it's 10...

  • RE: Problem with backup via EXEC in procedure

    I did, also copied the full command from the debugger to see if it worked, it did.

  • RE: SSMS - Re-open queries after a reboot?

    n00bDBA (11/6/2012)


    I don't use it myself but i only hear good things about the SSMS Tools pack by Mladen Prajdic, I think that does what you looking for and works...

  • RE: SSMS - Re-open queries after a reboot?

    You can try Redgate's SQL Tab Magic (currently free if I'm not mistaken), it does what you want from SSMS and even better 🙂

    It also keeps track of tabs you...

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