Viewing 15 posts - 12,016 through 12,030 (of 13,838 total)
You can DEFINITELY use a WHERE clause in Access.
Try building the query in Access - might speed things up for you. When it's working, just grab the SQL and then...
May 21, 2010 at 7:49 am
da-zero (5/21/2010)
Phil Parkin (5/21/2010)
da-zero (5/21/2010)
May 21, 2010 at 7:42 am
There should be no space before 'TIME' in your query.
May 21, 2010 at 7:40 am
da-zero (5/21/2010)
May 21, 2010 at 7:14 am
getdate() is not a valid function in Access.
Try using Date() instead.
By the way, Select * is bad practice. It is better if you select all the fields explicitly by name....
May 21, 2010 at 7:13 am
Do this at source, if possible, by using a query instead of a table as your data source. Does that answer your question, or were you wondering how to write...
May 21, 2010 at 4:47 am
When I import dates held as strings, I usually put them in universal format (YYYY-MM-DD HH etc etc) via a derived column and then map them to the target field....
May 21, 2010 at 2:29 am
By 'static', I was referring to the file name, not the contents of the file. Unless you have done anything fancy, this will already be the case - the...
May 20, 2010 at 10:39 am
Easiest solution is to leave the destination file static, but put a File System or Script task at the end of the job which does a file copy for you,...
May 20, 2010 at 10:08 am
If your text qualifier were working correctly, you would not be seeing quotes in the output.
It seems that you are suggesting that only rows beginning with 21 are failing. But...
May 20, 2010 at 5:30 am
clucasi (5/20/2010)
I have my text delimiter to a " already because most of the fields have quotes in
Please post a couple of records of source data. Do you really want...
May 20, 2010 at 5:15 am
What are your row and column delimiters set to?
Looks like you need to set your text qualifier to be " to avoid importing all the quotes.
Use a hex editor to...
May 20, 2010 at 5:04 am
RexSmith (5/20/2010)
Dim f As String
For Each f In System.IO.Directory.GetFiles(path)
...
May 20, 2010 at 4:57 am
bas de zwart (5/18/2010)
You could try the Bulk Insert command, it has an option to limit the number of rows:http://msdn.microsoft.com/en-us/library/aa225968%28SQL.80%29.aspx
By using LASTROW = 1, I guess. Nice idea.
Here is your...
May 18, 2010 at 2:16 am
The problem here is not one of column and row delimiters, rather that some of the source rows are split over two rows and some only one, making a straightforward...
May 18, 2010 at 1:26 am
Viewing 15 posts - 12,016 through 12,030 (of 13,838 total)