Forum Replies Created

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

  • RE: Database connection failed

    Post your connection string. Just change the server name, IP address, db name and credentials.

    From the PC you are trying to connect with, can you connect using a UDL or...

  • RE: Database connection failed

    Try changing your connection string to use SQLNCLI (SQL Native Client).

    Post your connection string.

    Also check to see what the users default DB is. Some people set a default DB...

  • RE: Backup of TX Log: Failed:(-1073548784)

    GilaMonster (7/21/2011)


    Let's consider this situation....

    Now your situation

    And that's the gamble.

    In the pleasant scenario you give there's a chance (it happened more than once) that the one, or many, TX log...

  • RE: Backup of TX Log: Failed:(-1073548784)

    GilaMonster (7/21/2011)


    If you want to keep the log managable, back the log up regularly and make sure there are no other problems that cause the log to grow (failed replication,...

  • RE: Backup of TX Log: Failed:(-1073548784)

    GilaMonster (7/21/2011)


    That's still a very bad thing to do, as it means that if a full backup is not restorable you have no options for restoring to point of failure....

  • RE: Backup of TX Log: Failed:(-1073548784)

    Yes, backup log with truncate only is logged. I see it. There's actually a job that does this just prior to the FULL db backup.

    At least the job logs...

  • RE: Backup of TX Log: Failed:(-1073548784)

    I hope not!

    I did notice a trend that it fails at a specific time. At least the past 2 days it did. There is only one job that runs at...

  • RE: Database Backup with zip/rar

    I use the WinZip commandline tool and use the Windows Scheduler to kick it off.

    Like the others said, use only one compression tool. I zip a 90GB .bak file to...

  • RE: ResultSet?

    It looks like your backing up to a UNC path. Can you try backing up to a local drive?

    If no space try a USB drive. I found that backing up...

  • RE: t-sql to add a user to ALL DB's on the server....

    THAT WAS IT!!!!

    I knew I was forgetting something simple...... :hehe:

    Thanks a bunch!

  • RE: Easy Restore question from UNC path

    Nevermind. I figured it out.

    I told you it was a senior moment.

    The problem was the account I creaed was missing the letter "s". So the creds SQL was passing...

  • RE: Backup/Restore Permission Problem

    True.

    Then I recomend the OP package this script and do as Grasshopper sez.....

  • RE: Backup/Restore Permission Problem

    PhilipC (5/12/2011)


    "Only members of the sysadmin fixed server role can specify the Auto_Fix option."

    Try this on the DB *AFTER* they restore it. It's not "Auto_Fix" so it might work.....

    DECLARE @username...

  • RE: SQLSERVER Memory Problem target memory

    To get the memory SQL uses, tun the following...

    SELECT

    --Amount of physical memory on server

    physical_memory_in_bytes

    , physical_memory_in_bytes / 1024 / 1024.00 as physical_memory_in_MB

    ,virtual_memory_in_bytes

    , virtual_memory_in_bytes / 1024 / 1024.00...

  • RE: SQLSERVER Memory Problem target memory

    SQLMyFriend (5/12/2011)


    I talked with our network guy, it's not possible for them to add another memory disk on that computer.

    A network guy is managing the SQL Server????

    OK, let me ask...

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