Viewing 15 posts - 13,051 through 13,065 (of 13,876 total)
It's no mystery - you have to rewrite your code using .NET syntax. I'm afraid that you have some learning to do, as I doubt that people here have the...
December 23, 2008 at 7:33 pm
You need to rewrite your VBScript code in VB.NET - the syntax and commands are quite different. I'm afraid that cutting and pasting just won't work.
Phil
December 23, 2008 at 7:23 pm
Can I just confirm what the underlying business requirement is here? Is it that there are constant amendments to an Excel spreadsheet of employee data and you want these amendments...
December 23, 2008 at 7:15 pm
And, what order might that be? Order by name, date, extension, 8.3 name, or ???
haha, I was wondering the same and was hoping to draw out the answer gently,...
December 23, 2008 at 7:06 pm
Great tip - I did not know about that ... looks perfect for this.
December 23, 2008 at 6:16 am
So the sources are being updated continuously? Or just from time to time? You may encounter some locking problems.
One approach could be to move the source file to another folder,...
December 22, 2008 at 11:44 pm
Maybe you could create a single file containing all the SQL first:
If Exist All_Files.sql Del All_Files.sql
Copy *.sql All_Files.sql /y
and then just execute All_Files.sql to save iterating round - not sure...
December 22, 2008 at 11:32 pm
When you create a connection to the source file, using the Flat File Connection Manager Editor', select 'Advanced' - you can type in a caret directly as the column delimiter.
Phil
December 22, 2008 at 11:14 pm
This is a common complaint with Excel input data. Check out this thread for some further details and ideas:
http://www.sqlservercentral.com/Forums/Topic423760-148-1.aspx
Phil
December 1, 2008 at 7:35 pm
🙂 I'm sorry I was so slow to understand what you were trying to do.
November 25, 2008 at 1:17 pm
So you want to use SQL Agent to start a Windows service? What happens if the service is already running?
What login credentials is the SQL Agent service running with? Can...
November 25, 2008 at 12:57 pm
SMAZ (11/25/2008)
1. If file file format is xls then
1.1 convert XLS file into CSV format
...
November 25, 2008 at 12:40 pm
The version of VB.NET used in SSIS is, I believe, called VB.NET for Applications and is not the full-blown development environment in which you have developed your earlier piece of...
November 25, 2008 at 12:32 pm
If this is pure numeric data in a CSV file, it should not be surrounded by text qualifiers ("). Try stripping these text qualifiers out from this field.
Phil
November 25, 2008 at 3:59 am
I had a quick look at the code: so for selected rows in a source SQL Server table you are executing an FTP process?
You need to get yourself on an...
November 24, 2008 at 2:13 pm
Viewing 15 posts - 13,051 through 13,065 (of 13,876 total)