Viewing 15 posts - 2,551 through 2,565 (of 3,667 total)
Temporarily comment out the INSERT statement.
If that doesn't work try supplying a small XML file in the correct format.
What happens if you change the parameter to NTEXT rather than TEXT?
January 9, 2006 at 1:13 pm
Have a separate table.
BEGIN TRANS
INSERT INTO dbo.YourSeparateTable
SELECT FROM dbo.YourOriginalTable
WHERE [qualifying criteria]
DELETE FROM dbo.YourOriginalTable
WHERE [qualifying criteria]
COMMIT TRANS
Then BCP out dbo.YourSeparateTable
Then TRUNCATE dbo.YourSeparateTable
Incidentally a fast way of generating the structure of YourSeparateTable...
January 9, 2006 at 1:09 pm
cmd.Parameters.Add(new System.Data.SqlClient.SqlParameter("@xmlInput", SqlDbType.Text, 1024));
Possibly 1024(1KB) should be 5120000 (5MB)?
January 9, 2006 at 7:14 am
I have read an article on physical file defragmentation on a SAN or RAID system http://www.raxco.com/products/perfectdisk2k/whitepapers/pd_raid.pdf.
The gist of RAID/SAN defrag is that
a) Not all defrag tools are compatible with SANS/RAID...
January 9, 2006 at 7:03 am
The BBC has been experimenting with on-demand podcasting and their view is that as a public service broadcaster their material should be free.
I've had BSkyB for 4 years but it...
January 9, 2006 at 1:38 am
Oh the beloved datetime thing.
9/10 times it has something to do with the server being configured to recognise dates in month-day rather than day-month or vice verse.
I got so teed...
January 6, 2006 at 12:39 pm
Joe Celko is a purist and while technically correct (probably) he has a "forceful" way of expressing his views.
January 6, 2006 at 11:03 am
OK I have got my file by ditching the FOR XML command and using the sp_makewebtask stored procedure with a template that has my XML structure in it.
If I keep...
January 6, 2006 at 2:04 am
Good news Dad, your airbag works!
You couldn't trust him to sit the right way on a toilet seat!
Your displaying more intelligence than your hand-writing would suggest.
The most important part of...
January 6, 2006 at 1:17 am
If I could get the file then FTPing it is pretty straight forward.
My problem is that my query produces the XML I want but if I try and use a...
January 6, 2006 at 1:13 am
The behaviour of the outer join is very useful if you get an question such as
"Give me all the customers who ordered in December who didn't order in November"
You can...
January 5, 2006 at 1:30 am
I would consider having a set of archive tables that are basically structurally identical to your existing tables.
Your existing tables contain the data up to 3 months old, your new...
January 4, 2006 at 1:01 pm
Jan 1st 2005 = Saturday
7 days * 52 weeks = 364 days therefore Dec 31st 2005 = week 53.
Jan 1st 2006 = Sunday which is day 2.
Dec 29th 2006 is...
January 4, 2006 at 5:44 am
In your VB app what is brought back if you list the results of SELECT * FROM Tstar_Currency?
Also, I have come across a situation where a user database and system...
January 4, 2006 at 1:42 am
Viewing 15 posts - 2,551 through 2,565 (of 3,667 total)