Viewing 15 posts - 1 through 15 (of 182 total)
I found asolution. You need to add a DWORD "SessTimeout" to HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters with a decimal value in seconds. I used 300.
If anyone has something more elegant I'd love...
September 26, 2011 at 4:09 pm
this does not help if you have nullable fields
June 3, 2009 at 12:36 pm
I just want to make a note, that if you choose the "OR statement" route with the null conditionals, be sure to do the following:
1. Make sure you hit...
June 1, 2009 at 5:01 pm
Why the prohibition from using SCOPE_IDENTITY (which would be your solution in this case)?
I don't know... ask the authors of Access. I cannot control which identity is returned back...
May 9, 2008 at 4:58 am
Thank you for the quick response! Any suggestions to make Access behave?
May 7, 2008 at 4:20 pm
If it were, what would the solution be? You think the session is expiring between SQL box and AD?
October 17, 2007 at 3:03 pm
what does this do?
setprec "DTSStep_DTSExecuteSQLTask_2","DTSStep_DTSDataPumpTask_"&tsk
June 7, 2007 at 8:45 am
Thank you for the quick reply, I was looking at that property and wasn't exactly sure how to use it. I am going to test this today. I...
June 7, 2007 at 8:37 am
NOLOCK is primarily used for (semi) static tables. You are just eliminating unecessary overhead. Pretty much agree with everything you say though.
May 24, 2007 at 11:44 am
Are there any articles on this? What is meant by a table scan? You've peeked my interests.
May 24, 2007 at 7:38 am
if it's a static table, I'd recommend NOLOCK hints, so that no other resource needs to wait for the read to finnish. If you only expect one row, then...
May 23, 2007 at 11:15 am
some example data/query?
May 23, 2007 at 9:16 am
We already established that he doesn't care to have an identity field. worse case scenerio, he can add the field before he runs whichever operation he needs.
May 23, 2007 at 8:46 am
Warm Feeling-> writing code that compiles and outputs correctly the first time...ahhhh
Anyhow, I feel your pain... been there done that kind of deal... Putting the Identity field wasn't my point....
May 18, 2007 at 11:37 am
It gets inserted at the bottom of the table regardless. The clustered key is what would cause the insert to "insert" in the middle of the file (resorting the...
May 18, 2007 at 9:51 am
Viewing 15 posts - 1 through 15 (of 182 total)