Viewing 15 posts - 13,081 through 13,095 (of 13,841 total)
OK, I know what this is. The ID will have a data type of 'uniqueidentifier', probably with a default value of newid(). SQL Server will generate this for you on...
April 7, 2006 at 5:45 am
So the question is: "What generates the SubmissionID code?"
If it's a SQL Server IDENTITY field, you can try the INSERT statement I gave you, but without the SubmissionID, ie
April 7, 2006 at 2:48 am
Try inserting the row without the CONTENT and SELECTED fields first. If it works, we'll move on to CONTENT.
and...
April 6, 2006 at 10:14 am
The very existence of an 'insert row' option makes it difficult to suggest that this is 'wrong' ![]()
You are using tools that I have...
April 6, 2006 at 9:39 am
No problem. Regarding the syntax / access violation problem, can you post the SQL command that you issued?
April 6, 2006 at 9:01 am
OK - don't do it, you are right!! It will not fix anything, I was merely trying to help you troubleshoot exactly where the error was being generated. But that's...
April 6, 2006 at 8:35 am
In my mind, there is a logical separation between the function of the JOIN clause (joining tables together) and the WHERE clause (filtering the data that is returned). Shovelling everything...
April 6, 2006 at 7:56 am
I don't quite understand what you want. Can you post the SP, some sample data and desired results?
April 6, 2006 at 7:52 am
Try commenting out line 102 and replace it with
response.write("EXEC InsertNextPage @StoryID='" & submission.Fields("StoryID") & "', @SubscriberID='" & submission.Fields("SubscriberID") & "', @Content='" & Cleanse(submission.Fields("Content")) & "'")
This should write a T-SQL...
April 6, 2006 at 7:49 am
Please post the declarations and instantiation of the conn object.
April 6, 2006 at 7:01 am
I guess the good thing about using views is that they are always up-to-date. You can just grab the data out of their database whenever you want (subject to load...
April 3, 2006 at 6:04 am
If the data that is coming out of the examination system contains rubbish as a result of bad design, that should not be your problem. You will end up building...
April 3, 2006 at 5:16 am
Great - I like stories with happy endings ![]()
April 2, 2006 at 3:17 am
Create a table that contains just numbers - 0, 1, 2, 3, ..., 1000 say.
Then do a CROSS JOIN to this table from your label data source, where newtable.num < number of...
April 1, 2006 at 5:14 am
Viewing 15 posts - 13,081 through 13,095 (of 13,841 total)