Viewing 15 posts - 601 through 615 (of 680 total)
Glad to help... best of luck to you.
Tim
July 17, 2007 at 7:34 am
How are you storing the password? If you're not doing so already, store it in a config file for maximum portability. See the following for a primer on how to...
July 16, 2007 at 8:58 pm
James,
Make sure you identify the quote " as your field qualifier when defining the text file source. That will signal the parser that anything within quotes is an atomic value...
July 3, 2007 at 7:43 am
I've used the App Dev training series (http://www.appdev.com/) to brush up on various topics, and I have never been disappointed. These videos are on the pricey side, but in...
June 26, 2007 at 7:42 am
Kyle,
If you are familiar with a .NET programming language, you should take a look at SMO (or SQL DMO, for SQL Server 2000). This programmatic interface will allow you to...
June 6, 2007 at 7:36 am
Are the column names consistent for each data file? If so, just skip the first row of data (Header rows to skip = 1).
hth
Tim
June 6, 2007 at 7:28 am
I ran into the same error, but I was trying to do a SELECT...INTO in a linked server. I had to script the table on the target DB, then run an...
May 25, 2007 at 8:40 am
Are you running SQL Server agent using a local account on the SQL box? If so, you'll have problems copying the file out to a network share. If this is...
May 19, 2007 at 11:07 pm
Sorry, I don't think there's a way to do this without uninstalling the default instance first.
May 19, 2007 at 10:54 pm
Are you familiar with the conditional split task? This component will allow you to redirect your output to multiple paths based on criteria you specify. This should give you what...
May 16, 2007 at 10:39 pm
This was a strange one.... After much searching, I just found the answer to my own question. Run the following command:
mofcomp "C:\Program Files\Microsoft SQL Server\90\Shared\sqlmgmproviderxpsp2up.mof"
See http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=142375&SiteID=1 for full details.
May 16, 2007 at 9:58 pm
Dilsa,
It looks like this is a fairly simple mapping, with only the first value requiring any manipulation before going to the destination. I would use a Derived Column task to...
May 16, 2007 at 7:30 am
When you enclose your entire case statement in the parenthesis after your AND clause, the query processor expects a true/false to be returned from within the parenthesis.
You are also...
May 15, 2007 at 7:59 pm
I think SQL Server has a driver for dbase - you might try connecting it as a linked server and hit the tables from there.
May 15, 2007 at 7:47 pm
There was a throughput limitation on MSDE - I think it was five simultanenous operations - but this limit does not exist on SQL Server Express. This free version runs...
May 15, 2007 at 7:42 pm
Viewing 15 posts - 601 through 615 (of 680 total)