Viewing 15 posts - 16 through 30 (of 38 total)
Thanks for your responses,
We are looking into the stored procedure angle. They are actually using a form to filter the data and they don't return any records when the form...
March 18, 2004 at 8:34 am
Zouhir,
I do not believe the implicit transactions are what are causing the problem. The problem is with the SET IDENTITY_INSERT "dbo"."B" ON statements. The SET IDENTITY_INSERT on...
October 1, 2003 at 4:14 pm
Since it is a SQL statement, how about breaking it up into several variables: select, from, where, groupby etc.?
That would give you 8k a piece. Would that...
October 1, 2003 at 12:19 pm
Zouhir,
If all you are doing is saving the data for archiving or for performance sake, I would take off the auto number on the subsequent tables because the inital table...
October 1, 2003 at 10:03 am
I was able to reproduce your error. I am looking into it. Do you need to have the autonumbers on the second and third tables? What are...
September 30, 2003 at 12:35 pm
A couple of questions: Are you inserting data into the primary keys? SQL Server won't allow you insert data into the auto number field.
Also, how are you...
September 30, 2003 at 9:20 am
Rather
select field1, isnull(field2, '<None>') from table
group by field1, isnull(field2, '<None>')
September 12, 2003 at 2:02 pm
You might try to put the field into a isnull function and force it to return a value that way.
For example:
select field1, isnull(field2, '<None>') from table
group by field1, isnull(field2,...
September 12, 2003 at 1:59 pm
I found the problem! The files being accessed were on the Web server and the script source access was not set, so it was not letting it look at...
May 29, 2003 at 3:05 pm
Allen,
I have learned more about the problem. I thought the error might be a resource problem, so I moved the sever over to a different machine. I got...
May 29, 2003 at 1:57 pm
No its not. That's why I am confused. It is when I choose a different SQL user it works.
Richard
Edited by - rbinnington on 05/29/2003 09:34:58 AM
May 29, 2003 at 9:33 am
Ok,
I tried the script a couple of different ways using QA and Profiler. When I tried just running the script exactly as you had it, it failed during the...
May 29, 2003 at 9:07 am
I am sorry to be bothersome, but I got it to work manually the way you described, but when I put it into a stored procedure it gave me the...
May 28, 2003 at 3:40 pm
Thanks once again! That really helped me out and nailed it for me.
Richard
May 27, 2003 at 2:23 pm
THANKS!!!
That worked like a charm abd I appreciate the quick response.
I have a second question though. I am still new to a lot of this stuff, but how do...
May 27, 2003 at 10:14 am
Viewing 15 posts - 16 through 30 (of 38 total)