Forum Replies Created

Viewing 15 posts - 46,336 through 46,350 (of 59,062 total)

  • RE: How to transpose the ROWs

    Thanks Pravin... I always appreciate the feedback.

  • RE: How to calculate the Bi-weekly in SQL

    Just for grins, here's the CTE version without TOP...

    ;WITH

    cteTally AS

    (

    SELECT ROW_NUMBER() OVER (ORDER BY ID)-1 AS N

    FROM Master.sys.SysColumns

    )

    SELECT DATEADD(dd,(t.n)*14,'20090102') AS BiFriday

    FROM cteTally...

  • RE: How to calculate the Bi-weekly in SQL

    For anyone that reads this that may still be using SQL Server 2000, the system table called spt_Values that Madhivanan used has a bunch of different things in it depending...

  • RE: Exercise to practise SQL

    I'm still looking forward to the sky writing...

  • RE: Break Views by modifying tables

    Heh... everyone gets all bent out of shape when someone uses a cursor in a place where it shouldn't be, but no one says boo when someone uses a cursor...

  • RE: OLE Automation help

    Thanks for the backup Lowell... I was thinking that I need to include a graphic and a better explanation... you saved me some work. Thanks, ol' friend.

  • RE: OLE Automation help

    Not the login you're using... the login the SQL SERVER is using when it starts up on the network...

  • RE: What do you look for in a Database Audit?

    There are some things I look for in security... are things like SSN's, Pins, Passwords, Account numbers, or even the "last 4 of the SSN" encrypted? Who has access...

  • RE: What do you look for in a Database Audit?

    rajib (12/26/2008)


    I hope this kind of open ended question is OK to ask in this SSC forum.

    Thanks

    Absolutely... it does help folks understand if they know you know it's a very...

  • RE: Are the posted questions getting worse?

    Heh... Now, now, David... it's set up perfectly for an SQL Injection attack... what are you crabbin' about? 😛

  • RE: Cursors Be Gone!

    Matt Whitfield (12/26/2008)


    Jeff Moden (12/24/2008)


    Matt... I did agree and said so. There's also a bit to be added in retrospect. That's what discussions are about.

    Fair enough. I re-read...

  • RE: Are the posted questions getting worse?

    bitbucket (12/26/2008)


    Hey can I get a pay raise each time I write some T-SQL that uses cursors and triangular joins and takes forever to run, tying up the server so...

  • RE: OLE Automation help

    The server you are working on, whether local or remote, must be logged in as a user that can "see" the spreadsheet using a UNC instead of a mapped drive.

  • RE: Looking Forward

    Steve Jones - Editor (12/26/2008)


    Congrats!

    Hey, pick up running as a new vice, that's what I did 🙂

    http://amileaday.blogspot.com/

    Just bought a nice new Calypso Cruiser (bicycle)... 7 speeds... nice super heavy duty...

  • RE: Split Names With out VB Script

    ps (12/26/2008)


    Jeff, I must say the way you play around with T-SQL is really amazing. Atleast I couldnt think of using PARSENAME in this example:w00t:

    :blush: That's awfully nice...

Viewing 15 posts - 46,336 through 46,350 (of 59,062 total)