Viewing 15 posts - 1,741 through 1,755 (of 7,168 total)
Oooh, a GOTO, haven't seen one of those in a while 😀
What else is going on in the TRIGGER? code?
And can you post the tables and all indexes of the...
March 6, 2013 at 12:28 pm
When you run your process you can track progress by checking the rowcount of the table in sys.partitions with the iso level READ_UNCOMMITTED.
Did you understand what I meant about offloading...
March 6, 2013 at 12:24 pm
Chances are you have your Flat File Connection Manager setup incorrectly. When you go to Preview, does your data line up? If not, make sure you are accounting for the...
March 6, 2013 at 12:22 pm
Different OS requirements for one. I suppose a warning would be a kind addition to the site.
March 6, 2013 at 9:13 am
Sounds odd. Maybe you'll get lucky and Gail or Paul will drop by and relay something they have heard or seen about the issue you are seeing.
March 6, 2013 at 8:17 am
mayur birari (3/6/2013)
Thanks for the quick reply. What I meant to say is I was able to produce deadlocks even with the indexed tvps.
There is guarantee it will remove them....
March 6, 2013 at 8:14 am
subramani.rudrappa 78855 (2/6/2013)
March 6, 2013 at 8:10 am
mayur birari (3/6/2013)
I did some testing with the indexed tvps interms of deadlocks. I did not find any difference between non-indexed and indexed versions. I created a simple application...
March 6, 2013 at 8:01 am
winmansoft (3/6/2013)
if connection 2: COMMIT TRAN is done initially (in code)and some err in connection 1
then connection 2: cannot not be rolled back right ?
Correct. That's why you do leave...
March 6, 2013 at 7:54 am
To be fair, msdn scrips offer more than just the bare min and the licenses state that the software is there for 'dev use only.' This is to support dev...
March 6, 2013 at 7:49 am
weird forum error - this post was meant for a different thread - post removed
March 6, 2013 at 12:46 am
quillis131 (3/5/2013)
I have a csv file (FIXED Width)
Files are either delimited, e.g. a CSV file, or fixed width. Which is it that you are dealing with?
March 6, 2013 at 12:41 am
Please supply the indexes on pp (patenit_property) and pp_staging as well as the INSERT statement used to copy the data.
One thing I can say is that if you were to...
March 6, 2013 at 12:28 am
Per Books Online "The COMPUTE and COMPUTE BY clauses are provided for backward compatibility." so use those in new development at your own risk. They do not exist in SQL...
March 6, 2013 at 12:13 am
Not under the same transaction, but you can manage that on your own.
Connection 1: BEGIN TRAN
Connection 2: BEGIN TRAN
Connection 1: Modify some data
Connection 2: Modify some data
-- If modifications on...
March 5, 2013 at 11:57 pm
Viewing 15 posts - 1,741 through 1,755 (of 7,168 total)