Forum Replies Created

Viewing 15 posts - 4,456 through 4,470 (of 5,111 total)

  • RE: Five Useful SQL Server Management Practices

    John Mitchell-245523 - Wednesday, January 18, 2017 3:33 AM

    Thom A - Wednesday, January 18, 2017 2:56 AM

  • RE: Five Useful SQL Server Management Practices

    Helpful article. I had thought about using a share to back up before, but this article has made me start looking into it finally (while I have the time as...

  • RE: FTP Task

    Briceston - Tuesday, January 17, 2017 11:06 PM

    Thank you. This is a good starting point for me.  I think the script task...

  • RE: Estimating backup size

    sp_msforeachdb accepts parameters as well, there's no need for your own cursor.

    This would work:exec sp_msforeachdb 'USE [?];

    IF DB_ID(''?'') != 2 BEGIN
      SELECT ''[?]''...

  • RE: Really Bizzare Flat File Destination issue

    Phil Parkin - Tuesday, January 17, 2017 8:44 AM

    Modify is unticked in this screen shot.

    I thought that at first, but that's Lowell's...

  • RE: SSC Forum Updates

    DamianC - Tuesday, January 17, 2017 2:00 AM

    Thanks, code markers seem to be working as previous now

    I can't see to see...

  • RE: Select case in sql server 2012

    poornima.s_pdi - Tuesday, January 17, 2017 2:13 AM

    Hi Thom,

    I want to delete that one.But i don't find option.
    After I read Jeff guide given...

  • RE: why is this trigger not working ?

    Could you not just have the value as a computed column, then there is no need to update, as it's calculated? For example:
    USE DevTestDB;
    GO

    CREATE TABLE Dates...

  • RE: Select case in sql server 2012

    poornima.s_pdi - Monday, January 16, 2017 6:59 PM

    Hi,
    I tested your query but I am getting the output as follows,

    Type    Value
    10        0
    20  ...

  • RE: GETTING ERROR ON THE OUTPUT

    You're not using the CTE as it was intended. it''s there to  build you a real table you can do a proper join on, as your data is truly relational.

  • RE: why is this trigger not working ?

    Senchi - Monday, January 16, 2017 1:40 PM

    I am actually just updating the end_date field. So when it gets written (updated) I wanted...

  • RE: GETTING ERROR ON THE OUTPUT

    Now looking at the post here Luis has given you the answer you need. You need the use the CTE he gave you. I just tried it, and it worked...

  • RE: GETTING ERROR ON THE OUTPUT

    This is something you were asked to do last time, I have done it for you this time, but PLEASE provide CREATE and INSERT statements when asking questions. Considering that...

  • RE: SSC Forum Updates

    Brandie Tarvin - Monday, January 16, 2017 9:01 AM

    Hmm. Just an FYI. After posting this, I hovered the mouse over the first image....

  • RE: SSC Forum Updates

    Brandie Tarvin - Monday, January 16, 2017 8:07 AM

    Thom A - Thursday, January 12, 2017 7:15 AM

Viewing 15 posts - 4,456 through 4,470 (of 5,111 total)