Forum Replies Created

Viewing 15 posts - 346 through 360 (of 1,409 total)

  • RE: How to Backup without inteupting users

    Btw: a file backup of an active database is NOT the advised way to create a database backup!!

    When a database is ONLINE the databasefiles will be locked. Some (backup)tools take...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: How to Backup without inteupting users

    You can just execute a SQL native (or third party) backup without users noticing anything. Database just stays online and available and users can still perform actions without problem.

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Question on how you set up your backup schedules...

    I've been in different companies and every company has it's own setup. Lately I see more and more third party software like TSM and the database backups done by a...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Question on how you set up your backup schedules...

    DBA From The Cold (9/23/2014)


    ....If your diff backups are taking longer, can you schedule them to run more than twice a week? They would then have to backup less changes...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: TEMPDB FULL

    Ratheesh.K.Nair (9/23/2014)


    we killed oldest active transaction and suddenly all data files got 99% free space and we were able to release more than 120GB.

    Did you look at the code the...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: incrementing value sql query help

    Here's a simple sample:

    if not object_id('tempdb..#values') is null

    drop table #values

    create table #values (daily_date datetime, value int)

    insert into #values

    values('20140810', 20)

    , ('20140811',40)

    , ('20140812',80)

    , ('20140813',70)

    , ('20140814',70)

    , ('20140815',60)

    SELECT

    cur.daily_date as 'today'

    , prev.value as 'yesterday_value'

    , cur.value...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Where's the Thread?

    TomThomson (9/23/2014)


    Stefan Krzywicki (9/22/2014)


    I'm kind of hoping this becomes the new thread.

    Ah, all becomes clear. The thread wanted a companion, so it inserted itself between some spam threads to...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: TEMPDB FULL

    If you didn't have active monitoring/tracing on activity running on the server it will be impossible to get the root cause. There is basically no way to see how/what (DML-)actions...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Need to copy backup files from one Server to another

    I can think of several options:

    1. the easiest is to include the backup date/time in the backup filename. This will generate unique filenames so existing files won't be overwritten with...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Where's the Thread?

    Steve Jones - SSC Editor (9/22/2014)...... I might have escalated it in other situations, but this wasn't critical enough to ruin someone's weekend.

    Now that's an attidude I wish other departments...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Where's the Thread?

    I have the same issue for thread "Are the posted questions getting worse". I also don't find the thread in the list anymore.

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Connection setting between two SQL server to access a different database

    Your referring to the four-part notation. The correct notation is [instance_name].[database_name].[schema_name]..

    To be able to use this accross different instances a linked server connection is required from the querying instance to...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Are the posted questions getting worse?

    From the leaving DBA's point of view it wouldn't give me a confident feeling when the OP is reverting every question to this forum.

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Are the posted questions getting worse?

    GilaMonster (9/19/2014)


    Someone's either having the worst day, or is asking interview questions.

    Database goes into Restoring mode

    Performance tuning it so critical can any one plz figure it out urgent ...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Database goes into Restoring mode it is Production server standard edition

    naga.rohitkumar (9/19/2014)


    ...no one take tail-log backup it just simply went in to restoring mode ...

    And btw: a database doesn't go "just in to restoring mode". An action is required to...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **

Viewing 15 posts - 346 through 360 (of 1,409 total)