Forum Replies Created

Viewing 15 posts - 53,956 through 53,970 (of 59,065 total)

  • RE: problem with float data type

    In my book you should be getting 00.0000000000000000000000000000001 which is 1.0E-31. Anything else is a lie.

    Yes... I agree... in DECIMAL math, you would be absolutely correct. But FLOAT does...

  • RE: Insert row by row

    No, no... (just making sure)... I said you "could" use a cursor... it wasn't a recommendation. 😀

    Perhaps an example of the type of validation I'm talking about is required...

    So...

  • RE: What is the difference between Programmer and Good Programmer ?

    Moreover you are newbie to this site.

    Ummmm... that's a bit arrogant on your part... you're a bit of a newbie yourself and, so far, I've not seen you answer...

  • RE: T-SQL

    To add to that... sp_help.

  • RE: What is mean by Programming styles?

    Yes... pretty much all of that and more... for example, you'll never see me use a While Loop to create a list of contiguous dates... I'll always use a Tally...

  • RE: How to write query result in an output file in T-SQL (MSDE)

    But when I'v used this method, the result of the select * query was unexploitable like the result can appear in a cmd window.

    Sure, I can help... but I don't...

  • RE: What is mean by Programming styles?

    Now, those sound like some pretty strange places... Senior Sybase DBA with 0 days experience... they must have had a death wish. 😉

  • RE: Update only changed rows, Insert only new rows

    Randy,

    There's just a huge number of options because you don't have any triggers. For example, IF you're staging table contained ALL the customers (including ones that are no longer...

  • RE: Use GETDATE() within a UDF

    Output from a stored procedure does not have a PK Constraint and cannot be indexed unless first materialized as a table. So, it depends...

  • RE: INSERTED DUPLICATE RECORDS

    Yep... you're right... database sure can't do any of that And, I'm sure that the VB program does it with much more speed...

    Everyone does realize that my statement...

  • RE: Multi-statement Table_valued Function error

    I wish I knew enough about replication to help you out of the pickle you're in...

    Thanks for the feedback.

  • RE: Query for nth lowest sequence in a group

    Then, you're probably going to be ok...

  • RE: Jobs in Sqlservercentral.com

    karthikeyan (11/22/2007)


    if nobody working for this site ,then how the databases are maintained ?

    Really i dont know can you tell me how does this site is running ? Atleast they...

  • RE: Fun with datetime

    So long as they don't change it to decimal math... that would just slow it down 😀

  • RE: drop constraint fails

    Is this the constraint that you cannot delete?

    if exists (select * from dbo.sysobjects where name = 'FK_tdta_ebMatrix_tkey_eBaum')

    ALTER TABLE [dbo].[tdta_EntscheidungsbaumMatrix] DROP CONSTRAINT FK_tdta_ebMatrix_tkey_eBaum

    GO

    If so, what happens when you manually run the...

Viewing 15 posts - 53,956 through 53,970 (of 59,065 total)