Forum Replies Created

Viewing 15 posts - 55,666 through 55,680 (of 59,067 total)

  • RE: Problem with Date

    Run the following...

    DBCC USEROPTIONS

    ... which will produce something like this...

    Set Option Value

    textsize 64512

    language us_english

    dateformat mdy

    datefirst 7

    quoted_identifier SET

    arithabort SET

    ansi_null_dflt_on SET

    ansi_defaults SET

    ansi_warnings SET

    ansi_padding SET

    ansi_nulls SET

    concat_null_yields_null SET

    (12 row(s) affected)

    DBCC execution completed. If DBCC printed error messages, contact...

  • RE: Rounding numeric data

    Ok... not the explanation I was looking for but I guess it'll do.

    If you want to round to a single decimal place, then convert it to to something like DECIMAL(19,1)...

  • RE: altered proc, but old version is showing up on sql monitor?

    It's ok... heck, I guess I don't blame you about the bump on a busy forum.  When you need an answer, you need an answer and a relatively harmless bump...

  • RE: Allow user to grant select on views?

    Heh... ok... not sure that's better or worse but at least its not a desparate human   Thanks, Rainer.

  • RE: Speeding up the Execution of Triggers.

    I'd recommend that changing the timeout is a patch, not a fix.  All you'd end up doing is allowing code that desparatly needs to be fixed to take its sweet...

  • RE: Problem with Date

    Did the problem happen to start on the 13th of July?  Sounds like someone may have changed the default date format from dmy to mdy and your code isn't handling...

  • RE: delete

    Everyone is forgetting about the "other" problem... the excessive row sizes that arise when doing the table ALTERs for the nocheck of constraints.  It means that one or more of...

  • RE: altered proc, but old version is showing up on sql monitor?

    You may want to try using DBCC FREEPROCCACHE.  If that doesn't do it and it's a GUI proc, you may have to clear cache for the application.  Since I don't...

  • RE: Rounding numeric data

    Ram,

    Dunno about the others, but I need to know why you want to simply throw away so many decimal places especially since the target datatype (Money) has 4 decimal places...

  • RE: Whoops

    I agree... bad message to promote and, depending on what the server is doing, if you down it, you could cost someone their life (seriously... 911 control server, traffic light...

  • RE: Why DTS ignores a second extension when loading a text file?

    Like I said on the other forum, I think you have a bit of a technical error in the code.  I think this...

    ImportFullPath = ImportPath & ImportFile

    ... should be this...

    ImportFullPath...

  • RE: Speeding up the Execution of Triggers.

    This is what I call "RBAR" (pronounced "ree-bar" and is a "Modenism" for "Row by Agonizing Row") because you have variables on the right side of an update.  The only...

  • RE: Recurring values

    Thank you for the detailed explanation... I have just a couple more questions , if you don't mind...

    Can you post the table of results for the "A" items?

    In the formula 18(18)+18(18-15), do...

  • RE: Recurring values

    Very nicely stated and explained, Steve.

  • RE: How to extract month and year(combined) from a date

    Thanks Wutang , but, nope... just a regular ol' SQL guy answering questions if I can.

Viewing 15 posts - 55,666 through 55,680 (of 59,067 total)