Viewing 15 posts - 1,276 through 1,290 (of 2,647 total)
VS2008 has many varieties. BIDS is essentially VS2008, but the "version" that comes with SQL Server; i.e. you don't code C# or asp.net with it. So, when you create an...
March 29, 2012 at 5:49 am
eshulman (3/28/2012)
March 28, 2012 at 3:25 pm
Its clear that the VB.NET code is assuming it will NOT be the same each time. So, (not being accusatory but asking a genuine question) how do you know for...
March 28, 2012 at 2:36 pm
eshulman (3/28/2012)
The only difference between executions is the data content of fields, the statement is always the same.
Hmm... Then why is the INSERT INTO table (column, columnb, columnn) VALUES( portion...
March 28, 2012 at 2:11 pm
I would think there would be a uniquely generated prescription_id for each entry. That makes logical sense to me. Hence, the same person could have 2 of the same...
March 28, 2012 at 2:07 pm
eshulman (3/28/2012)
March 28, 2012 at 2:02 pm
Well... My best educated guess is that an invalid insert statement is being built and passed in the ones that are failing. I would write something into the VB.NET code...
March 28, 2012 at 1:54 pm
Lowell (3/28/2012)
http://support.microsoft.com/kb/199037
then you might see that some basic...
March 28, 2012 at 12:36 pm
Ok, let's say you are trying to identify this. You do a SELECT DISTINCT ColumnA, ColumnB and compare it with the number of rows in the table. They...
March 28, 2012 at 12:32 pm
Lynn Pettis (3/28/2012)
March 28, 2012 at 12:16 pm
eshulman (3/28/2012)
Thank you all very much, we will take several of the suggestions and try them out to see if we can nail this down.
What suggestions?
1. Change @@identity to scope_identity()?...
March 28, 2012 at 12:05 pm
Lynn Pettis (3/28/2012)
SQLKnowItAll (3/28/2012)
eshulman (3/28/2012)
March 28, 2012 at 11:56 am
eshulman (3/28/2012)
March 28, 2012 at 11:43 am
Lynn Pettis (3/28/2012)
SQLKnowItAll (3/28/2012)
I would bet dollars to doughnuts that the insert ran just fine, but that another insert from another session ran between the insert and select, possibly on...
March 28, 2012 at 11:37 am
I would bet dollars to doughnuts that the insert ran just fine, but that another insert from another session ran between the insert and select, possibly on another table returning...
March 28, 2012 at 11:31 am
Viewing 15 posts - 1,276 through 1,290 (of 2,647 total)