Forum Replies Created

Viewing 15 posts - 571 through 585 (of 921 total)

  • RE: SQL Server 7 - CAL question for Web Hosting

    Cross-posted (and answered) in the Administration forum.

    --Jonathan

  • RE: UTC Dates

    quote:


    Specially this one

    http://www.mvps.org/vbnet/index.html?code/locale/gettimezonebias.htm


    I'm not going to spend any more time on this, but you'd...

  • RE: RowNum Function in SQLServer

    quote:


    Although I use these methods myself, I support Jonathan in that you *should* consider doing this not on the server, but within...

  • RE: SQL Server 7 CAL question

    20 CALs in SQL 7 meant that you could choose either "per seat" or "per server" licensing model. With one server, the obvious choice was "per server", as that...

  • RE: Huge Transaction log

    Perform a transaction log backup and then shrink the file. In BOL, see BACKUP LOG and DBCC SHRINKFILE. Scheduled tran log backups should keep the size under control...

  • RE: Date Format

    No, date formats (and the issue is usually with dmy vs. mdy) are determined by the default language, which is for the instance, not database. You can, of course,...

  • RE: UTC Dates

    quote:


    Interesting scenario.

    What if the producer of the data is located in New York, the SQL Server in London and Consumer / Report...

  • RE: UTC Dates

    quote:


    Johnathan

    Thanks for the reply but I have already ruled that solution out as the date may be from a period when the...

  • RE: Database options

    If you're testing this in Query Analyzer (QA), check the setting in Tools|Options|Connection Properties. The default is for that setting to be checked (true) and will override the server...

  • RE: procedure naming prefixes

    quote:


    awesome article. Thanks!

    Chris

    edit: Of course now... how can I go thru and quickly rename 450+ procs 🙁

    Learning is painful.


  • RE: UTC Dates

    In SQL Server 2000, this will get you the offset from UTC for the server:

    
    
    DATEDIFF(hh,GETUTCDATE(),GETDATE())

    You can then convert back and forth using this offset with DATEADD.

    --Jonathan

  • RE: Date and Time fields separately?

    quote:


    Currently, if I only care about the date, I can not store only the date. DATETIME will add a default time. So,...

  • RE: Cascade Question

    quote:


    Is it possible to alter an existing FK constraint to allow cascades on update or delete?


  • RE: Stored procedure error

    "go" is a batch directive and is not used within stored procedures. It creates a new batch, which means your local parameters are out of scope because everything following...

  • RE: Perf. counters not affected by memory encrease

    quote:


    - Ok, let it be so, but is there a way to keep procedure cache size fixed, to prevent it from being...

Viewing 15 posts - 571 through 585 (of 921 total)