Forum Replies Created

Viewing 15 posts - 47,416 through 47,430 (of 59,064 total)

  • RE: CLR functions in SQL,Insane or Brilliant?

    I believe you've hit upon the only two uses that I'd even think of letting someone write a CLR for. 🙂

    The other thing is that, with the exclusion of...

  • RE: Query tuning

    vkundar (11/3/2008)


    Hi,

    I have a cursor which fetch around 1000 rows from the table.

    This step is fast there is no isue.

    Heh.... Bzzzzt! Wrong answer! Deduct 10 points! :P...

  • RE: Re: Evaluating logically-equivalent stored procedure performance

    jlp3630 (11/3/2008)


    What's the best test methodology for comparing the performance of multiple, logically equivalent versions of a stored procedure? Browsing through the internet, it seems that you should use the...

  • RE: in clause vs not in clause

    bang725 (11/3/2008)


    hmmmm...

    " Not in " will take more time.

    Heh... prove it. Got code? 😉

  • RE: Life is Like a Manure Spreader

    Heh... I beg to differ, Steve. You did NOT compromise. You simply made it easier for someone else to do the work and, as it turns out, may...

  • RE: IF EXISTS vs if @@rowcount

    I would suggest you stop looking at costs in either the estimated or actual execution plans because it is frequently very wrong.

    For example, given the following test data...

    DROP...

  • RE: temporary tablesvs derived table

    1. I see no difference in the time when measured properly...

    --SELECT GETDATE() as Time

    --GO

    SET STATISTICS TIME ON

    CREATE TABLE #Temp_Example (

    [CategoryID] INT NOT NULL,...

  • RE: StaticvsDynamic queries

    clive (11/3/2008)


    1. Static query: (Clustered Index Seek cost is 100% - estimated execution plan)

    Select * from tblContract_Instal1

    where Contract_No = 4669

    2. Dynamic query: (Clustered Index Seek cost not shown -...

  • RE: Change datatype

    Mike Levan (10/31/2008)


    I am changing datatype int to varchar(10) whata re the pros and cons, will i lose any data by any chance, what is the gud approach and how.

    thanks

    Ummm......

  • RE: convert string to int in ssis

    The "E" indicates either "Engineering Notation" or "Scientific Notation". The "E+11" means "Times 10 to the 11th power". It won't fit into an INTEGER, but it will fit...

  • RE: Please need help on looping through the dataset!!!

    Awesome to know... thanks for the compliment, Seth. I really appreciate it. Heh... I also appreciate you getting to all of these before me! Makes my life...

  • RE: Tune Query

    What indexes do you have on the 3 tables?

  • RE: Relationships between views?

    Are you saying that you've revoked base table rights from users on a reporting database? If so, give it back!

  • RE: Parsed string into a view

    Robert,

    Take a look at the following article. It explains what a Tally table is, how it works, has a couple of examples including how to split a whole table's...

  • RE: Auto grow option

    Matt Miller (11/3/2008)


    I would usually advise to leave autogrow on. Not leaving auto-grow on means your database runs the risk of running out of space, in which case everything...

Viewing 15 posts - 47,416 through 47,430 (of 59,064 total)