Viewing 15 posts - 2,551 through 2,565 (of 3,678 total)
Our apps are .NET and C++ based so we use NUNIT to devise a long list of test scripts. Come service pack time we simply rerun the NUNIT...
January 13, 2006 at 6:16 am
You should have
an Icon for a server that represents you connection to your SQL Server.
An Icon for your text file that represents you CSV file.
A connecting line between the...
January 12, 2006 at 10:39 am
Are you allowed to change your database recovery mode to BULK LOGGED?
January 12, 2006 at 4:33 am
DTS's can be as simple or as complex as you want.
You can import/export from/to a variety of different sources. For example, I had a datawarehouse that needed to almagamate...
January 11, 2006 at 12:29 pm
Just for the sake of testing change your INSERT INTO query to SELECT INTO TestTable
That way
INSERT INTO MarketRiskdev.dbo.Import_Argentina
SELECT * FROM TestTable
should work. If it doesn't you will be closer...
January 11, 2006 at 12:01 pm
bcp is very fast at extracting or importing data.
As Data Transformation Services suggest they can do just about anything you want to data. DTS includes a specific task that...
January 11, 2006 at 11:57 am
I'm just wondering why you are using SQL Query Analyser to do this?
Is is just for a quick one off?
If you have to do it more regularly then consider using...
January 11, 2006 at 11:54 am
Recognition, visible results, the desire to fund a decent mid-life crisis.
January 11, 2006 at 5:50 am
Within SQL Query Analyser make sure that under Tools/Options/Results you have the following settings
Default Results Target : Results To File
Results Output Format : comma delimited
Print Column Headers : Checked
Putting the...
January 11, 2006 at 5:49 am
My point about removing the INSERT was to prove that the XML shredding actually works and could come back as a recordset.
If this was the case the chances are that...
January 10, 2006 at 3:33 pm
Put it this way, you have sat for 15 years in front of a cathode ray gun.
When I was at college in the 1980s one of our tasks was to...
January 10, 2006 at 1:27 am
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
Viewing 15 posts - 2,551 through 2,565 (of 3,678 total)