Forum Replies Created

Viewing 15 posts - 421 through 435 (of 587 total)

  • RE: Are the posted questions getting worse?

    I have a dirty diaper, will that work? Rolled up it has some good heft, left open it can subdue a crowd... and my supply seems limitless.

    (RE: weapons...

  • RE: Are the posted questions getting worse?

    You are more than welcome to The Thread. We all started with little knowledge and we all still have people who know more than we do.

    I have to ask...

  • RE: Polymorphed Proc

    Derek Dongray (3/16/2009)


    If you look in SSMS Options under Query Execution, you'll find that the GO batch separator can be changed.

    I wouldn't recommend it though.:D

    Yeah - I can see someone...

  • RE: SQL Server Analysis Services

    When you submit a QOD, you don't get to pick whether radio buttons or check boxes are used. If there is more than one right answer, it puts up...

  • RE: SQL Files open in a new SSMS instance

    Yes, that is what I would like to do - have it open in the SSMS that is already running. Right now it opens a new SSMS everytime I...

  • RE: DateAdd Function

    webrunner,

    .786 isn't a valid millisecond for the datetime datatype...

    All datetimes end in either .xx0, .xx3 or .xx7

    .xx9, .xx0 and .xx1 are rounded up/down to .xx0

    .xx2, .xx3, .xx4 are rounded...

  • RE: Identity puzzle

    The result depends on whether or not any rows have been inserted into the table since it was created. If there haven't (like in the first reseed), the next...

  • RE: TSQL - tempdb

    Gaby Abed (2/27/2009)


    How many rows would this return? 🙂 (yes...it's different)

    use AdventureWorks

    go

    declare @tableA TABLE(col1 int, col2 int)

    go

    --stmt 1

    select name from tempdb.sys.tables where name like '%tableA%'

    --stmt 2

    select name from...

  • RE: Threading?Spin off a command within a SP?

    That's what I was afraid of. I know if the job is still running when the schedule wants it to start again, it doesn't kick off right after finishing...

  • RE: Threading?Spin off a command within a SP?

    The job doesn't have to be scheduled. I did something like this with replication where the post-replication script just runs sp_start_job 'JobName'

    I thought about that, but was worried about...

  • RE: Threading?Spin off a command within a SP?

    First run I combined the loop and job options, kinda taking a page from the replication notebook. I created a stored procedure with the loop and delay so that...

  • RE: TSQL

    RBarryYoung (1/22/2009)


    I think that the second choice would be better stated as "Delete * From Table".

    The problem is, the "Delete table" choice could mean the "Delete" table menu selection from...

  • RE: Select Where_Min()

    Thanks RBarry, Matt, Ramesh and Jeff. This is good stuff, and exactly what I needed.

    Chad

  • RE: Select Where_Min()

    Very nice Ramesh. I think that might work for me. Thank you for your help!

    Chad

  • RE: concatenating column values in select when there is a null column

    use the ISNULL() function to replace the null values with an empty string.

Viewing 15 posts - 421 through 435 (of 587 total)