Viewing 15 posts - 13,066 through 13,080 (of 13,838 total)
Dennis
.mdf and .ldf files are not backup files, they are native SQL Server database and log files respectively. All you need to do is copy the files to your standard...
May 14, 2006 at 3:10 pm
OK - so what is the relationship between T1 and T2? Do you just want them displayed side-by-side in ascending order?
May 12, 2006 at 4:44 am
Please describe how to get from your sample data to your required results. Where did the 100 and 200 come from?
May 12, 2006 at 4:14 am
I don't think so. You'll have to change your logic to move your DBCC statement out of the transaction somehow.
May 9, 2006 at 9:39 am
Not sure. Could you do something like
osql /L > sqlservers.txt
to redirect the output to a file called sqlservers.txt and then use that in your app?
May 9, 2006 at 9:25 am
SQL 200 - that must have been a while ago
Have you tried installing EM on another PC and seeing whether it happens there...
May 9, 2006 at 7:46 am
Creating and deleting tables uses resources, of course, and this is an unusual way of designing an application.
Whether this starts to cause you performance problems depends on volumes, hardware, how...
May 9, 2006 at 7:37 am
Well, I guess you could try this.
First off, replace all of the single quotes with something else - eg ~ or some other character that does not exist elsewhere in...
April 7, 2006 at 8:01 am
The single quotes will cause all sorts of problems, that's for sure! If you already have an ASP page that does (or should do) this, it will probably handle the...
April 7, 2006 at 7:23 am
Ace.
What's the datatype of the content field?
April 7, 2006 at 6:44 am
It's best if you specify the fields that you are INSERTing into - also use single quotes and dump the curly brackets:
April 7, 2006 at 6:16 am
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
Viewing 15 posts - 13,066 through 13,080 (of 13,838 total)