Viewing 15 posts - 391 through 405 (of 1,048 total)
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...
November 4, 2011 at 7:18 am
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...
November 3, 2011 at 12:43 pm
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...
November 3, 2011 at 12:13 pm
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.
November 3, 2011 at 11:50 am
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(...
October 14, 2011 at 11:52 am
cast it to an integer when you join, like : cast(Points.ScalePoints as integer) = cast(Scales.Scale as integer)
October 13, 2011 at 8:46 am
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...
October 12, 2011 at 1:21 pm
create a view of the table which removes the character you are worried about then BCP the view.
October 12, 2011 at 8:09 am
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...
October 11, 2011 at 8:05 am
AndrewSQLDBA (10/7/2011)
I am able to replace...
October 7, 2011 at 11:34 am
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...
October 7, 2011 at 11:03 am
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...
October 7, 2011 at 8:21 am
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...
October 6, 2011 at 6:57 am
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...
October 6, 2011 at 6:37 am
Viewing 15 posts - 391 through 405 (of 1,048 total)