Forum Replies Created

Viewing 15 posts - 241 through 255 (of 279 total)

  • RE: Are the posted questions getting worse?

    Grant Fritchey (2/23/2009)


    mazzz (2/23/2009)


    anyone else a fan of Terry Pratchett and Neil Gaiman's joint effort, Good Omens?

    Great for some light relief

    Yes. Everything I've read by Gaiman, and I started reading...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: NonClusered Index Rebuild

    GilaMonster (2/23/2009)


    mazzz (2/23/2009)


    As far as I understand it from answers I got to a similar post I made myself the other day, you can't defragment unless you have a clustered...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Are the posted questions getting worse?

    anyone else a fan of Terry Pratchett and Neil Gaiman's joint effort, Good Omens?

    Great for some light relief

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: NonClusered Index Rebuild

    Here's another post that might be of interest

    http://www.sqlservercentral.com/Forums/Topic660743-361-1.aspx

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: NonClusered Index Rebuild

    http://www.sqlservercentral.com/Forums/Topic652865-146-1.aspx#bm653613

    See thread above. you;d have to create a clustered index, then do the rebuild/reorganise, and then drop the clustered index

    It might be worth considering adding a clustered index to the...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: NonClusered Index Rebuild

    As far as I understand it from answers I got to a similar post I made myself the other day, you can't defragment unless you have a clustered index on...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Are the posted questions getting worse?

    How many times can The Thread post within itself before it hits recursion limit problems, is what I'd like to know.

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Days and Time

    Hi, the code below should give you some ideas at least:

    declare @dint int set @dint = 2009044

    declare @secs int set @secs = 55228

    declare @datenotime datetime

    declare @datewithtime datetime

    declare @days int set...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Query MSDB for SSIS package connection managers/server names?

    Apologies for the delayed response, I've had a long weekend due to having amassed a day's worth of hours in-lieu 🙂

    Rudy,

    Thanks for the suggestion, but I'd really rather not change...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Formatting a date field

    I got my last post completely wrong, but anyway - the below should give dd-mm-yyyy:

    declare @d datetime set @d = '2008-09-15'

    select @d

    select convert(varchar(20), @d, 105)

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Formatting a date field

    you need to use a "style" in your CONVERT statement

    From BOL:

    CONVERT ( data_type [ ( length ) ] , expression [ , style ] )

    and there's a table with all...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Query MSDB for SSIS package connection managers/server names?

    Thanks for your input Chris.

    We were originally planning on setting up Sql Server configuration, rather than XML files (correct me if I'm wrong please, but as far as I can...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Query MSDB for SSIS package connection managers/server names?

    I have indeed, unfortunately there is not only not enough time to implement this(*), but also our test server is effectively our live server (I know, I know), so that...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: Query MSDB for SSIS package connection managers/server names?

    Thanks Greg

    I was afraid of that when I saw that column earlier.

    there doesn't seem to be any way to query the MSDB-stored packages for any package level information at all,...

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

  • RE: stupid stupid stupid restore problem

    I wasn't disagreeing with you, I was curious 🙂

    ------------------------------------------------------------------------
    Bite-sized fiction (with added teeth) [/url]

Viewing 15 posts - 241 through 255 (of 279 total)