Forum Replies Created

Viewing 15 posts - 1 through 15 (of 59 total)

  • RE: The Identity Limit

    I guess the point is that there's a misconception about using BIGINT as an identity column and the IDENTITY specification itself.

    Many use INT or BIGINT as identity cols, but in...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Using GetDate() between two dates

    If it's just Mondays you want (and *only* Mondays, no matter what day you were running the query on), you could use DATEPART(weekday,<yourEventDateCol>) = 1 in a WHERE clause...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Upgrading OS tonight

    Should be fine. You can attach/detach, or backup/restore. Don't forget to rebuild stats and set the db compat level to the latest (or whichever level you need to preserve old...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Upgrading OS tonight

    I hope all went well ? The 'day of' is probably not the best time to e asking if there might be any issues 🙂

    Generally, in-place upgrades are to be...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Database Restore Hangs

    ALZDBA (1/8/2015)


    ...That's the reason I don't use "set single user", but put it offline, right before the restore.

    +1 - I always SET OFFLINE, never SINGLE_USER, as you can't be certain...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Backup Not Compressing

    I've seen some DBs that don't compress as much as I might have hoped due to GUIDs and encrypted columns, and even some that store data as text that's been...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Clustered instances and security

    Thanks Grant 🙂

    Been kicking this one around for a while. Might just chalk it up to 'Architect Fantasy'....;-)

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Challenge - Loading 120M records within 21 hours

    Could you add a new column to the table with the new precision, and copy the existing data into it using UPDATE table SET newCol = oldCol.

    You could chunk up...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Restore Snapshot works in SSMS not in SSIS

    Have you tried splitting the proc in two, and offline then restore ?

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Restore Snapshot works in SSMS not in SSIS

    I've always had problems with SINGLE_USER and geting the right session 🙂 If you SET OFFLINE WITH ROLLBACK IMMEDIATE, you should still be able to do the restore (but the...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: DB Mail is not sending mail

    How is your 'recipient' e-mail address supplied ? DB Mail requires a full address like 'My.Name@Company.com', not 'My Name'. It doesn't do address book lookups, just simple SMTP.

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Clustering for SSIS (SQL 2008 R2)

    Yes, if you store your SSIS packages in SSISDB, they will be clustered if the instance that DB sits on is clustered. 🙂

    The original question was about clustering the SSIS...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: SQL Server RUNNABLE SPID - KILLED/ROLLBACK

    Can you track down the service that started the spids ?

    If you stop the app or service that made the connection in the first place, that should kill the...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Clustering for SSIS (SQL 2008 R2)

    You can get round this if you use SQLAgent to run your SSIS packages.

    I've clustered a normal instance of SQL Server + SQL Agent, placed all dtsx and config files...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Seeking Guidance on RFID input to 08R2 Express

    Dalkeith (5/23/2014)


    Brilliant guys and thanks for the suggestion of Streaminsight.

    This has told me one I'm generally going along the right lines and express is not the thing to do it...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

Viewing 15 posts - 1 through 15 (of 59 total)