Forum Replies Created

Viewing 15 posts - 31 through 45 (of 70 total)

  • RE: Code Writing Code

    Once you start becoming a "lazy dba" and writing code that generates code - you begin the ascension into being efficient.

    One absolutely stupid thing that I "picked up" was the...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Too Tipsy To Work

    I think the reality is, some of us are still better after several beers than many of our coworkers are sober - so as long as you can safely get...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Overusing Identities

    I agree with Gail. I think the overuse of identities is a problem. Too often I come across data integrity issues caused by the theory of "identity on every...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: SSIS Custom Error Handling

    sorry - had the message 1/2 typed out and got pulled away. you need to select the columns you want persisted into the XML- as you said

    I need to...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: How do you do DB builds?

    Thanks - that would be an interesting use of QA. Our current structure really does not have QA in the loop when going to production or the build process,...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Encrypting the data

    This might help, its not particularly difficult to setup - varbinary storage..

    http://msdn.microsoft.com/en-us/library/cc278098.aspx

    also, open SSMS, F1, search for this :encryption [SQL Server], functions

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Cannot insert or change the value NULL into new column and old columns

    Good luck on your project.

    Buenos Nochas! (my weak Espanol for good night)

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Cannot insert or change the value NULL into new column and old columns

    Another fun fact : NULL never equals NULL

    SELECT * FROM ORDENES WHERE TRABAJO = NULL

    The correct way:

    SELECT * FROM ORDENES WHERE TRABAJO IS NULL

    UPDATE <schema>.ORDENES

    SET trabajo = 'wasoncenull'

    WHERE trabajo...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Cannot insert or change the value NULL into new column and old columns

    If you have it installed, your all set.

    Connect up and edit the table - whats the issue?

    Obviously going from a nullable field to non nullable will require you...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Cannot insert or change the value NULL into new column and old columns

    Have you installed SSMS and connected to your server?

    For a newbie, navigate to the table, right click modify, then check the allow nulls where applicable.

    You can download SSMS express and...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Good for the Goose

    By in large, most companies I have worked for were very fair with their overtime requirements. You put in the hours when you need to, if you are putting...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Stress

    Kudos on your choice of libations.

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Stress

    Personally, I typically reduce stress with a 6 pack of really good beer and some good old Chicago Blues.

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: data modeling - solving a circular reference

    Thanks for the input. At this point, its "enforced in the application", but being in the data business I always have that preference to make the model truly express...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

  • RE: Recurring Orders Table

    I would keep your order structure and probably create a SCHEDULED_ORDER table and have a job add the order to the table or the application pull in the defaults and...

    Cheers
    http://twitter.com/widba
    http://widba.blogspot.com/

Viewing 15 posts - 31 through 45 (of 70 total)