Viewing 15 posts - 20,731 through 20,745 (of 22,202 total)
We currently have two processes, both effectively the same. One of them we use an in-house developed tool that generates scripts based on a manifest of changes. We basically just...
April 3, 2008 at 6:41 am
From the error and your description, do you have some type of constraint on the column or table that prevents non-printing characters or something? Simply storing a carriage return is...
April 3, 2008 at 6:34 am
What error are you getting? Your test function ran fine on my machine.
April 3, 2008 at 6:30 am
When you say 2 million rows, do you mean, per year or total. If total, I wouldn't sweat migrating the data out of that table assuming you've got good indexes...
April 3, 2008 at 6:04 am
For that matter, if you right click a table in SSMS & use Script, Select, you can get a basic SELECT script for the table with all columns listed.
2008 will...
April 2, 2008 at 11:07 am
First, the problem that you're running into now.
If you have code that expects 15 columns, but suddenly gets 16, it may not know what to do with it and will...
April 2, 2008 at 8:24 am
There's no way to teach SSIS within a post on a newsgroup. However, I can point you to a few articles available on the site that should get you started.
http://www.sqlservercentral.com/articles/introductiontodtsinsqlserver2005/1486/
http://www.sqlservercentral.com/articles/SQL+Server+2005+-+SSIS/thenewetlparadigm/1719/
Here's...
April 2, 2008 at 7:49 am
One other thing you might check is running Profiler and getting statement complete events. This puts a significant load on the server, but you'd see the actual cost of each...
April 2, 2008 at 6:45 am
Text data is just strings as far as SQL Server is concerned and UPPER is not any kind of data limit, but rather a format. You can probably use an...
April 2, 2008 at 6:43 am
Use this code to create the linked server (the example is for connecting to Oracle):
EXEC master.dbo.sp_addlinkedserver @server = N'ServerName', @srvproduct=N'MSDAORA', @provider=N'MSDAORA', @datasrc=N'connectstring'
Then your TSQL just needs to include the server...
April 2, 2008 at 6:37 am
You should look at Integration Services. This is the primary Extract Transform & Load (ETL) tool for SQL Server. It can open a large variety of data types and move...
April 2, 2008 at 6:34 am
Excellent. Now you just need to look into those two clustered index scans to see if you can improve the performance even more. Look at your table and the predicates...
April 2, 2008 at 5:33 am
Without structure & data, it'll be really hard to say.
Do you have the execution plan? Can you post the estimated plan for the full query that takes too long to...
April 1, 2008 at 1:10 pm
Not for me. In general, the suggestions so far won't hurt performance on a 2gb database and they will help performance on larger databases. It's easy and free, so why...
April 1, 2008 at 10:01 am
Bad news, that must have been someone's private example. I don't have anything like that in the slides that they provided to us. I wish I did. The slides provided...
April 1, 2008 at 9:59 am
Viewing 15 posts - 20,731 through 20,745 (of 22,202 total)