Forum Replies Created

Viewing 15 posts - 436 through 450 (of 1,048 total)

  • RE: A Matter of Life or Death

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: A Matter of Life or Death

    Aaron N. Cutshall (9/12/2011)


    Dave, I beg to disagree. As an HIE, while it is important to have APPROPRIATE access to APPROPRIATE medical records to provide the services that we...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: trusted connections using Excel

    "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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Export Query Result to DBF file(foxpro)

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Update Statistics Job and Deadlocks

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Update Statistics Job and Deadlocks

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: truncate first or drop index firast, which is faster?

    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.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: truncate first or drop index firast, which is faster?

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Looking for a way to insert to a table that requires a field in another table to be created as part of the same process

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: truncate first or drop index firast, which is faster?

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: help with SQLCMD

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Where Do You Park?

    bill.saunders1 (9/3/2011)


    Asking where I park is like asking me where they whip me when I get to work. One hopes that the rising price of gas will make people...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Where Do You Park?

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Transation Log

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Transation Log

    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...

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 436 through 450 (of 1,048 total)