Forum Replies Created

Viewing 15 posts - 13,201 through 13,215 (of 39,898 total)

  • RE: Ridiculous

    This has gone a little sideways, but in addition to blatant harassment, like licking someone's shoulder, I was hoping to drive home the point that any unwanted advances, especially repeated...

  • RE: The Dream Machine

    anthony.dean (9/7/2012)


    oddly enough working for a very large company I have no complaints....so I guess my ideal machine to add to the office would be...one of these...

    LOL, but from personal...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (9/7/2012)


    All,

    Tomorrow's SQL Saturday post is going to be about SQL Server resources. I'm including things like this forum, Tek-Tips, a few blogs, Twitter hashtags.

    Does anyone have recommendations for...

  • RE: The Dream Machine

    Todd.Everett (9/7/2012)


    Now suddenly we have two key uses for our laptops - social media and cloud storage - that we can't live without. Many employers block both. ...

  • RE: Backup is taking much time

    How much longer did it take? Is the backup larger? Can you determine if there was other activity at the time of the backup?

    Usually if a backup takes more time,...

  • RE: Rogue Algorithms

    Scott D. Jacobson (9/6/2012)


    John Hanrahan (9/6/2012)


    Steve,

    I'm surprised no one mentioned agile development practices. It seems like agile is another word for minimal testing. That's fine when the consequences...

  • RE: Privacy

    cdonlan 18448 (9/6/2012)


    Defense.

    https://www.torproject.org/

    I played around with the Vidalia component a few years back (a little clunky but what do you expect?) and think it's a fascinating project. Others may find...

  • RE: Privacy

    Sigerson (9/6/2012)


    I don't see good outcomes in the future for our privacy concerns. The use of the web is so financially compelling for corporations that they *must* use it...

  • RE: Talking baseball

    Ray K (9/6/2012)


    Sheez! How do you blow a ten game lead?!?

    (calvo -- you are not allowed to respond!!! :-P)

    One game at a time. Ten times in a short span.

  • RE: Feedback On Proposed Drive/RAID Configuration For New SQL 2008R2 System

    Sorry, perhaps I was not clear.

    Install SQL Server as a single node cluster. This allows you to easily add another node to it later, and there is no downside. If...

  • RE: Can some tell me how to transfer schema of "User Defined Table Type" (UDTT) in SQL 2008?

    You are welcome, and it's not well documented from what I can see.

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (9/5/2012)


    The writer inside me is cringing.

    Ditto. I try to ignore those, especially when I think it might be a 2nd or 3rd language for someone. I can't imagine...

  • RE: Can some tell me how to transfer schema of "User Defined Table Type" (UDTT) in SQL 2008?

    Use ALTER SCHEMA, with the type::schema.object

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

    CREATE SCHEMA OldSchema

    ;

    GO

    CREATE SCHEMA NewSchema

    ;

    GO

    CREATE TYPE OldSchema.MyTable AS TABLE

    ( IDCode INT

    , Location VARCHAR(200)

    )

    ;

    CREATE PROCEDURE OldSchema.MyProc AS SELECT * FROM dbo.MyLogger

    ;

    ALTER SCHEMA NewSchema TRANSFER OldSchema.MyProc

    ;

    ALTER SCHEMA...

  • RE: Fantasy football 2012

    Double check your teams. The season kicks off soon.

  • RE: Transferring Backups

    You can remove the diff, but that won't necessarily change the time, depending on logs. You'll have more logs to restore.

    Best way: copy the full to an external HDD and...

Viewing 15 posts - 13,201 through 13,215 (of 39,898 total)