Forum Replies Created

Viewing 15 posts - 5,251 through 5,265 (of 5,356 total)

  • RE: date problem with SQL 2000

    Hi,

    quote:


    HI, I have face the same problem too last time. To get out of this trouble, i practise using yyy-mm-dd date format...

  • RE: Other databases

    quote:


    When is mysql v5 due out?


    I think at this moment nobody really knows this. Production...

  • RE: Identity problem!!!

    Hi,

    that's right, I think you only get 1,2,3 when you drop the identity column and create it again. But in most cases you can't do that. If you need an...

  • RE: date problem with SQL 2000

    I didn't mean that you're stupid, but my question.

    I've made the experience that I sometimes look for the complicated and oversee the obvious.

    Cheers,

    Frank

  • RE: Testing text field for content

    Hi,

    another try,

    DECLARE @text varchar(8000)

    SELECT @text = <your_textfield> FROM <table>

    IF len(@text)>0

    PRINT 'HALLO'

    ELSE

    PRINT 'SCHADE'

    Cheers,

    Frank

  • RE: Testing text field for content

    Oops,

    my mistake!

    Should have been reading more careful. You cannot use CHARINDEX on textfields. I'll keep searching.

    Cheers,

    Frank

    Edited by - a5xo3z1 on 05/16/2003 08:27:51 AM

  • RE: date problem with SQL 2000

    Hi,

    I've tested it on my Server (SQL2k) and it runs.

    Stupid question: Is startdate a datetime field?

    Cheers,

    Frank

  • RE: Connection can not be established

    Hi,

    is SQL Server Agent running?

    under account with appropriate rights?

    Cheers,

    Frank

  • RE: Testing text field for content

    Hi,

    if you mean by comment something like '/', '//', '/*' in your textfield you can use CHARINDEX or PATINDEX to check for existance. See BOL for details.

    Cheers,

    Frank

  • RE: date problem with SQL 2000

    Hi,

    could it be you're using a different collation order on SQL2k than on SQL7?

    Cheers,

    Frank

  • RE: Enterprise Manager Security

    quote:


    That makes sense. Hope you didn't pull too much hair out looking for it. First place I always check is the administrators...

  • RE: to improve performance?

    quote:


    Actually use bit for Y/N values. Less need to worry about data options not being in range.


    May 16, 2003 at 5:29 am

    #457439

  • RE: Enterprise Manager Security

    Hi Brian,

    verified your statement. The user in question is local admin to his box, no access under his account to Server a, but as member of an NT User Group...

  • RE: CPU field in sysprocesses

    I just received something that might be worth taking a look at

    Category: Stored Procedures

    Level: Intermediate

    Description: Display information similar to sp_who2, but has the same columns as the process manager in...

  • RE: CPU field in sysprocesses

    Hi,

    here's a stored procedure I use to collect Server Statistics. It's a modification of something I found somewhere else

    CREATE procedure dbo.pactldbmonitor

    as

    declare @last_rundatetime

    declare @now datetime

    declare @cpu_busy int

    declare @io_busyint

    declare @idleint

    declare @pack_receivedint

    declare...

Viewing 15 posts - 5,251 through 5,265 (of 5,356 total)