Forum Replies Created

Viewing 15 posts - 391 through 405 (of 1,048 total)

  • RE: Normalsing a Table set

    Define your own organization in the clients table. When staff are working on internal jobs the client is yourself. You should also have specific tasks defined in a Tasks...

  • RE: ETL

    For shops that have no .net development expertise (or desire to do so) its a good tool. Also very good for shops that have lots of varying but lightweight integration...

  • RE: 10GB CSV import into SQL 2008

    I'm not aware of any file size limitation for importing data into SQL server.

    Things you can do to make the import operation as efficient as possible:

    1) put the database into...

  • RE: Moving Tables from different servers

    We had similar requirements so I wrote a .net utility that can transfer various objects from one database to another, or to renamed tables in the same database. I used...

  • RE: tempdb memory

    Sounds like you (client apps) might be using a lot of server side or API cursors. They are performance killers... change your code to use client side cursors instead.

  • RE: SET IDENTITY_INSERT tableName ON isn't turning ON

    IDENTITY_INSERT is a session setting so if your script (or DTS package) is issuing the commands in separate sessions like this:

    exec('SET IDENTITY_INSERT dbo.InspectionFrequency ON');

    exec('Insert dbo.InspectionFrequency ( < column_list> ) values(...

  • RE: Challenging table join problem

    cast it to an integer when you join, like : cast(Points.ScalePoints as integer) = cast(Scales.Scale as integer)

  • RE: Usefulness of NOLOCK or READUNCOMMITED

    Lexa (10/11/2011)


    Hi,

    Can someone give examples where using NOLOCK or READUNCOMMITED hints helped with performance when using with SELECTs?

    Thanks

    Here is an example of a legitimate case: A table with rows...

  • RE: Replace character from generated csv file.

    create a view of the table which removes the character you are worried about then BCP the view.

  • RE: How to avoid calling a user defined function multiple times on a select or update?

    declare @someValue money

    set @someValue = getprice()

    Select dividend/@someValue as dividendYield, @someValue/Bookvalue as PriceToBookValue, @someValue/Earnings as PERatio From SecurityDetails.

    It is possible SQL could be smart enough to now the function return is...

  • RE: Poor Data Model

    AndrewSQLDBA (10/7/2011)


    Yes, that I could. I can use C# in a SSIS package. My problem is that I am not sure where to begin with it.

    I am able to replace...

  • RE: Poor Data Model

    If it were me I'd write a little C# program to process and load the pipe delimited rows and then insert into another table. You could split each row...

  • RE: alternative of Top.

    Maybe you should take a look at FASTFIRSTROW table or query hint, it might help you.

    However, as other have noted, when your query involves huge tables and joins to...

  • RE: Good SQL Server hardware ?

    isuckatsql (10/6/2011)


    So for TempDb is Raid1 ok, or are you suggesting something else?

    Yes. We use RAID 1 for tempdb on most our servers, the rest have RAID10 for size and...

  • RE: getting ready for a terabyte of data

    If the data is static except for a monthly load process you just drop and rebuild the indixes as a part of the load process.

    In this day of terrabyte drives...

Viewing 15 posts - 391 through 405 (of 1,048 total)