Viewing 15 posts - 31 through 45 (of 251 total)
Does anyone know of one?
Tim C.
//Will write code for food
March 26, 2003 at 12:25 pm
Hmmm, using the Command object does not mean you are not recieving results. If you use :
'no records, make sure to use the adExecuteNoRecords if...
March 26, 2003 at 9:51 am
I would suggest if doing it in a DTS package to use a VBScript step with the Scripting.FileSystemObject. There are MANY examples of doing what you asked for on Microsofts...
March 26, 2003 at 8:27 am
This doesnt say don't do it, but in there it does warn against using 4 or more joins, plus it has a couple other good join tips :
http://www.sql-server-performance.com/tuning_joins.asp
Tim C.
//Will write...
March 25, 2003 at 4:03 pm
I would have to venture it would also depend on the data types joined, and how wide the tables were, and indexes, etc.....
Tim C.
//Will write code for food
March 25, 2003 at 2:14 pm
I highly recommend this product SQL Compare from red-gate. Read a review from Andy Warren here : http://www.sqlservercentral.com/columnists/awarren/reviewofsqlcomparisonandsynchronizationtoolkit.asp His review is a coupld versions behind, but it has only gotten...
March 25, 2003 at 11:39 am
Another thing you can do from ADO, if you don't mind doing dirty reads is set
the IsolationLevel on your connection object to adXactReadUncommitted, then call
BeginTrans on your object....
March 25, 2003 at 11:19 am
quote:
We use stored procedures for everything else, including data retrieval. The cando everything a view can do and faster.
March 25, 2003 at 10:02 am
Also to help you identify deadlocks, sometimes you know one of the sides often
deadlock, but unless you see which spid is deadlocked against you, and are able
to immediately...
March 25, 2003 at 8:21 am
For (A) Steve feel free to use : http://www.sqlservercentral.com/scripts/contributions/723.asp if it helps. I would move the javascript into a js, and use it at your leisure. As far...
March 24, 2003 at 10:45 am
OMG, just love hearing that the JOYS that I have gone through are shared elsewhere. Misery loves company.
Tim C.
//Will write code for food
March 24, 2003 at 9:30 am
Talking about the joys of sp_rename, I just love sp_renamedb especially when doing cross database querying, and someone decides to change the DB name on you because a client wants...
March 24, 2003 at 8:34 am
Have the VB developer record what record number he is on at the time of the
error in his err handler. Then take a look at this record. As Racosta...
March 24, 2003 at 8:27 am
Microsoft also used to have a tool called the Access Upgrade Wizard. I don't know if they still have it for AccessXP but it was specifically designed to upgrade Access...
March 23, 2003 at 9:07 pm
You could also set up roles that mimic the 0-9 security levels you mentioned and use the IS_MEMBER in your T-SQL or app to verify group membership. I agree with...
March 23, 2003 at 11:14 am
Viewing 15 posts - 31 through 45 (of 251 total)