Forum Replies Created

Viewing 15 posts - 2,416 through 2,430 (of 6,401 total)

  • RE: Database Snapshot

    I do both, ensure I have a backup and log chain, and do a snapshot, its much quicker to restore from snapshot than backup.

    Restoring from snapshot reverts everything you have...

  • RE: regarding to union query result

    Use an ISO date format and not MDY, or better still, dont use a varchar string to store dates.

    declare @table table (count int, eachweek varchar(100))

    insert into @table values

    (0,'1/1/2013- 1/5/2013'),

    (0,'1/13/2013- 1/19/2013'),

    (0,'1/20/2013-...

  • RE: All Databases Data & log file size, space used & free space loading into a Table.

    This is how I do it currently, I capture the recovery model in a different proc, but wont be to hard to build it into this

    CREATE TABLE [DatabaseFileUsage]

    (

    [ID] [bigint] IDENTITY(1,1)...

  • RE: SQL connection error

    Do you have a custom message broker running?

    We get that a lot due to SQL dependencies when our message broker service stops and starts, as it drops and recreates the...

  • RE: Export data from Excel to SQL Server

    Use the import export data wizard and tell it to ignore truncation errors.

  • RE: SQL Server Snapshot Isolation Issue

    tim.cloud (2/14/2013)


    Interesting. So, my next question is...do all sessions from other databases need to be disconnected from the version store for versioning to be disabled? If so, this...

  • RE: Cursor Names - List

    Doh. not used cursors in a couple of years, so forgot the syntax.

  • RE: Triggers advice / help

    Please share the steps you did to get it working, in case someone later down the line has the same issue.

  • RE: SQL Server Snapshot Isolation Issue

    Had the same issue in a Dynamics AX setup which needs the snapshot DB level to be on

    If we had an issue with the row version store we ran this...

  • RE: Triggers advice / help

    do you have nested triggers config option enabled

    whats the output of

    select * from sys.configurations where name = 'nested triggers'

    But why not just update C and D from within the...

  • RE: Output of Dynamic variable to next query

    needs to be done in the same session but do

    declare @cnt int

    select @cnt = count(*) from table

    select top 10 *, @cnt from table

  • RE: Named Instance and specified port not connecting

    So server to server works, but server to workstation doesnt?

    Do you have any firewalls controlled by IT which sit between the servers and the workstation VLANs?

  • RE: Split VLDB into Multiple data files

    balasach82 (2/14/2013)


    Perry, OPC,

    now the db is in one drive. We do have 4 drives. My database is already populate, its 523gb now.

    1. Can I create new files in new drive...

  • RE: Differential backup question

    You dont have an INIT and FORMAT so it is appending the diff backup to the media set not overwriting it, so it contains all 13 days diff backups.

    Highly risky...

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (2/14/2013)


    I've got the same issue as Brandie. I can't seem to log into Ask with my SSC login.

    The two dont act like a single sign on, but you...

Viewing 15 posts - 2,416 through 2,430 (of 6,401 total)