Viewing 15 posts - 436 through 450 (of 1,048 total)
Aaron N. Cutshall (9/12/2011)
I'm sorry that you feel that way.
So am I. Having paid into government programs & scams all my life (taxes, Social [in]Security, medicare, FUT...
September 12, 2011 at 8:53 am
Aaron N. Cutshall (9/12/2011)
September 12, 2011 at 8:31 am
"Trusted" means that the credentials of whoever is currently logged in (you) running the program will be used to connect to SQL Server. I have never actually tried specifying a...
September 12, 2011 at 7:06 am
bcp won't convert direct to those formats. You would have to export (to say, CSV) then import into those other databases.
Another option is to write your own conversion program...
September 12, 2011 at 7:04 am
okay about you not being able to do anything with the rest of the code. I am still curious as to why you need to update stats every day... usually...
September 9, 2011 at 8:12 am
try using a try - catch scenario. That is, do the update statistics in the try and in the catch detect the 1205 error and retry if it indicates the...
September 9, 2011 at 7:50 am
GilaMonster (9/8/2011)
The only way to re-enable an index is to rebuild it, and an index rebuild updates statistics with full scan
The defense rests.
September 8, 2011 at 9:27 am
Ninja's_RGR'us (9/8/2011)
I would personnally disable the indexes. That way you don't have to bother about keeping the packages in sync with the index mods for tuning or whatknot.
Only issue...
September 8, 2011 at 9:12 am
You need two inserts in a transaction to do this correctly.
First insert the necessary parent rows into TableB (I assume one of the columns of @TV) then do the insert...
September 8, 2011 at 8:36 am
I don't think the difference would really be measurable, especially in terms of some process you do once a day. Having said that my vote would be to truncate then...
September 8, 2011 at 8:29 am
I assume you are running the sqlcmd's from a batch file ?
after each sqlcmd use : IF ERRORLEVEL 1 goto ......
which will evaluate to TRUE for any non-zero...
September 7, 2011 at 12:03 pm
bill.saunders1 (9/3/2011)
September 6, 2011 at 7:51 am
Those of us who drive motorcycles to work get to park in a couple of spots right next to the building under some great shade. I parked there today...
September 1, 2011 at 7:25 am
I thought you were referring to the transaction log. You can compact the database file also if it is larger than you need to hold the data currently in there.
Look...
August 29, 2011 at 2:41 pm
The log file must be large enough to fully contain the largest transactions between checkpoints. Once you system has reached its normal throughput you can shrink the transaction log and...
August 29, 2011 at 1:37 pm
Viewing 15 posts - 436 through 450 (of 1,048 total)