Forum Replies Created

Viewing 15 posts - 17,146 through 17,160 (of 26,489 total)

  • RE: Today's Random Word!

    CirquedeSQLeil (1/29/2010)


    Lynn Pettis (1/29/2010)


    CirquedeSQLeil (1/29/2010)


    Pro-bowl should be in the middle of the season.

    Good idea, midway in the season, and everyone has the same bye week.

    I was thinking that it could...

  • RE: Can't resolve err in delete from syntax

    Assuming you are trying to delete from table1, try this:

    delete from

    dbo.table1

    from

    dbo.table1 as source

    where

    ...

  • RE: Physical Disk Fragmentation

    The only way I have successfully defragged my mdf/ldf files that reside on our SAN is to do it while SQL Server was shutdown. And in a couple of...

  • RE: Today's Random Word!

    CirquedeSQLeil (1/29/2010)


    Pro-bowl should be in the middle of the season.

    Good idea, midway in the season, and everyone has the same bye week.

  • RE: Converting from varchar to datetime

    Question, are you trying to return todays date at 17:30 as part of this query? If so, you could do the following:

    select dateadd(mi, 1050, dateadd(dd,datediff(dd,0,getdate()), 0))

  • RE: Converting from varchar to datetime

    Your dateformat is probably dmy. Your code worked for me, to get it to fail I had to set dateformat to dmy.

    Try the following, it creates the string in...

  • RE: Can DBA lead an Organization and/or IT department?

    Bill Gates-870674 (1/29/2010)


    Nothing is jack of All AND nothing is master of ALL.

    One has to be more specific and specialist in one area.

    So i want to re-question that

    DBA having good...

  • RE: TempDB into Memory

    Steve Jones - Editor (1/29/2010)


    You could look at an SSD drive for tempdb, which might provide some speed boost as well.

    I seem to remember reading something somewhere (twitter maybe?) where...

  • RE: JOIN ON vs. WHERE

    With INNER JOINs I don't think it really matter where you put the filter condition. Where it matters is when you are converting old style outer joins to ANSI-92...

  • RE: Stored Proc with table variables running very slow?

    It depends. If the number of rows of data in the table variables is small, then they work well. If the number of rows increases, then temp tables...

  • RE: correlated subquery help

    As you are new to SSC, may I please suggest that you read the first article I reference below in my signature block regarding asking for assistance. Flow the...

  • RE: JOIN ON vs. WHERE

    Matt Miller (#4) (1/29/2010)


    keep in mind that getting the same results stops being true when those inner joins turn into outer joins.

    Jack - what's non-ANSI compliant in Query 1? ...

  • RE: SQL2005 32 bit to 64 bit migration path

    IMHO, I personally would not attempt to restore the system databases (master, model, msdb) from the 32 bit environment to the 64 bit environment.

  • RE: Transaction Log backup file size

    01/28/2010 12:15 AM 1,433,088 CycleTime_backup_201001280015.trn

    01/28/2010 12:31 AM 124,249,600 CycleTime_backup_201001280030.bak <-- Full BAckup

    01/28/2010 02:15 AM 34,797,056 CycleTime_backup_201001280215.trn <-- Why is this so big?

    The transaction log backup taken at 2010-01-28 02:15 contains...

  • RE: SQL2005 32 bit to 64 bit migration path

    You "might" be able to restore the msdb database, but I'm pretty sure that you couldn't do that for the master database (but then again I could be wrong). ...

Viewing 15 posts - 17,146 through 17,160 (of 26,489 total)