Forum Replies Created

Viewing 15 posts - 17,311 through 17,325 (of 26,484 total)

  • RE: Help Others, Help Yourself

    dma-669038 (1/20/2010)


    Hi Lynn, I didnt think i was..who you are in an organisation is a combo of what you think and what their values are. I was in a position...

  • RE: HELP me please ....

    Please, I am not disagreeing with Gail. We need to look at each situation and make the appropriate decisions, after all, isn't that why we make the BIG $$$$?

  • RE: Help Others, Help Yourself

    The flip side to that coin is thinking you are indispensable by not passing on knowledge to coworkers and less experienced team members. By passing on your knowledge you...

  • RE: The multi-part identifier ... could not be bound.

    See a pattern below:

    SELECT

    @aerialStatus = case when p.AerialBy IS_MEMBER null

    ...

  • RE: Backup Failed

    Sorry, i use the native sql backup with HyperBac. Can't help you with the Redgate product, not familiar with it.

    I do have a suggestion, use it to backup to...

  • RE: The multi-part identifier ... could not be bound.

    Try this:

    SELECT @aerialStatus = case when p.AerialBy IS_MEMBER null then'red' else 'green' end FROM Prospects p WHERE ProID = @ProID ;

    select @aerialStatus;

  • RE: HELP me please ....

    No, your not. I understand fully that you shouldn't restart a SQL Server instance or server. All I am saying is it really is an "It depends" thing....

  • RE: Backup Failed

    Partly answered my questions. You may have experienced a network issue during the backup. It is recommended that you complete your backups to a local disk resource and...

  • RE: HELP me please ....

    GilaMonster (1/20/2010)


    Ignacio A. Salom Rangel (1/20/2010)


    Good point Lynn, but I still will restart the server first!

    Depends on what the exact error is. Cases like this, where it's a file that...

  • RE: Log file bigger than data file

    shripati (1/20/2010)


    Hi...

    You can try this steps:

    Truncate the log file --- and shrink it to minimum size possible.

    This is the code...

    USE DatabaseName

    GO

    DBCC SHRINKFILE(<TransactionLogName>, 1)

    BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY

    DBCC SHRINKFILE(<TransactionLogName>, 1)

    GO...

  • RE: Backup Failed

    dba_neo (1/20/2010)


    Team,

    My Backup job have faile dwith the following error.

    BACKUP failed to complete the command BACKUP DATABASE [T1] TO VIRTUAL_DEVICE = 'SQLBACKUP_23C612B2-3FB4-4AE2-AE44-88D91328CC35' WITH BUFFERCOUNT = 6, BLOCKSIZE = 65536,...

  • RE: Raw Materials - The Sensitive DBA

    Liked it too, I did. 😀

  • RE: Are the posted questions getting worse?

    Chad Crawford (1/20/2010)


    Do I get a certificate of accomplishment for helping Lynn? Stuff like that doesn't happen every day and I'd like to have something to hang up...

  • RE: x64 Linked Server to a MySQL Database

    Chad Crawford (1/20/2010)


    Wow... it actually worked?!?!

    I can't claim credit for the settings - I copied them from a website/blog/forum somewhere I can't now find and luckly it worked for...

  • RE: database size clash

    I'm wondering if you are comparing apples to oranges.

    How are you determining the first values (21 GB, 4 GB).

    How are you determining the second value ~ 9 GB.

    I see how...

Viewing 15 posts - 17,311 through 17,325 (of 26,484 total)