Forum Replies Created

Viewing 15 posts - 56,101 through 56,115 (of 59,067 total)

  • RE: Setting Date with current timestamp

    The error is correct... Since you want to use the CURRENT_TIMESTAMP as the DATE column, you need to create a column alias... like this...

     INSERT INTO Employees

           

    June 16, 2007 at 1:32 pm

    #713460

  • RE: Indexing Joined Columns

    Well, not really... if you have a hundred million row table and you isolate a million of those rows in a temp table for some SQL prestidigitation, for example...

    Or you...

  • RE: Import CSV File Data

    Are you storing numbers that you will calculate with in that column??? World of hurt getting ready to happen there... $ won't let you do calcs unless you first convert to...

  • RE: Gadgets

    How's 'bout running Steve's riding lawnmower underwater?  

    I'm the luckiest guy in the world… my Dad made the coolest "gadget" I've ever seen except it's...

  • RE: Eliminate top and bottom percent of records

    Other queries did top/bottom 10% of the whole table which is why you got such a disparity in rows... Serqiy's does it correctly by the key column...

  • RE: Indexing Joined Columns

    When you say the tables have "no indexes on them", I'm hoping that you at least have a primary key   If not, you...

  • RE: Indexing Joined Columns

    Part of the problem with table variables is they do not nor can they be made to use statistics... table variables should be kept relatively short... changing to a temp...

  • RE: Checking Identity property

    Or, just set if to off... won't produce an error if it's already off.

  • RE: Are Views - good or bad!

    Thanks, Andy...

  • RE: Bankers Rounding

    That's the ticket... Thanks, Lynn.

  • RE: Bankers Rounding

    Heh... melted the filter...

  • RE: Bankers Rounding

    Dearest Moderator's,

    How can I make it so I'm no longer "watching" (unsubscribe) this topic?   We've gone from "Banker's Rounding" to actual "Digital Truncation"...

  • RE: Are Views - good or bad!

    Oh, bugger... I forgot about the check constraint thingy... Andy, I've temporarily lost my mind and my notes... can you review/provide a brief summary how the check constraints improves the performance...

  • RE: Best practice to implement future projection

    It depends...

    How many stocks do you need to do this for and how often?  Very well may be better to do it...

  • RE: Importing Excel into SQL

    Recommend you write a macro to export the section of the spreadsheet as a tab or comma delimited text file and import the text file.

Viewing 15 posts - 56,101 through 56,115 (of 59,067 total)