Forum Replies Created

Viewing 15 posts - 4,831 through 4,845 (of 6,394 total)

  • RE: SQL Server 2000

    SQL 2000 is not supported on Vista, Windows 7, Server 2008 or Server 2008 R2.

    Have you identified where the timeouts are occuring from? Is it logging in? Is...

  • RE: datasources issuse

    +1 with Andy but going off what he thinks and my interpretation, you are after "precendence constraints"

  • RE: iPad? Good for monitoring SQL servers?

    Thanks Grant, I just tried monitor.red-gate.com on the iPhone and works a charm especially the analysis part with the graphs. Now my question is, does monitor use the same...

  • RE: Uses of SubQueries Instead of Join-

    Andy Hyslop (5/30/2012)


    Hi looks like you are trying to work out your Six Sigma phase duration excluding weekends?

    Have you considered using a calendar table for this it could save you...

  • RE: General Qestions

    Koen Verbeeck (5/30/2012)


    anthony.green (5/28/2012)


    So I wonder if Koen is still alive or if he got taken to hospital with burst ear drums over the weekend

    I'm alive 😀

    Metallica was great, although...

  • RE: Booked 70-450

    Thanks Mike, I was gutted but not gutted at the same time. Was hoping to pass, but then a fail just gives you that bit more motivation to do...

  • RE: Database downgrade: 64 bits to 32

    tilew-948340 (5/29/2012)


    When I tried to read the SLQserver 2008 R2 DB with the SQL server 2008 and it did not work, I would have bet that it was because a...

  • RE: Anyone has ebook 70-450- Designing, Optimizing, and Maintaining a Database Administrative Solution Using Microsoft SQL Server 2008

    dufangmei (5/29/2012)


    But, micorosoft have its official book. For MCITP exam, I should read 70-432 and 70-450. So I will try other ways to find the book.

    The MS Training web...

  • RE: Booked 70-450

    just out of the test centre bad news this time round only got 624 so quite a way off. have to say there where a couple of questions which...

  • RE: With Quey (Row Wise Data Into Column Wise)

    Sounds to me like you need a calendar table which you need to lookup through to determin if the day is a holiday

    If you only want to exclude sat n...

  • RE: RESTORE could not start database - Possible schema corruption

    Could you not use the generate scripts function in ssms.

    It's somewhere on the database when you right click it, can also get it to script out the data and should...

  • RE: Today, Tomorrow, This Week

    Just use due date > getdate() and due date <= the first expression in my last post

  • RE: Today, Tomorrow, This Week

    --To get 23:59:59 of the current day

    SELECT CONVERT(DATETIME,LEFT(CONVERT(NVARCHAR,GETDATE(),120),10)+' 23:59:59.997')

    --To get 00:00:00 of the next day

    SELECT CONVERT(DATETIME,LEFT(CONVERT(NVARCHAR,GETDATE()+1,120),10)+' 00:00:00.000')

    --To get 23:59:59 of the next day

    SELECT CONVERT(DATETIME,LEFT(CONVERT(NVARCHAR,GETDATE()+1,120),10)+' 23:59:59.997')

    That will do what you need,...

  • RE: Today, Tomorrow, This Week

    Sachin 80451 (5/28/2012)


    It give me this error:

    Msg 243, Level 16, State 1, Line 1

    Type DATE is not a defined system type.

    DOH, my bad, forgot I was in the 2005 Forum,...

  • RE: Today, Tomorrow, This Week

    Why do you need to change from DATE to DATETIME?

Viewing 15 posts - 4,831 through 4,845 (of 6,394 total)