Viewing 15 posts - 241 through 255 (of 434 total)
Since nobody else wants to post it here is the code from http://vyaskn.tripod.com/code/generate_inserts_2005.txt
SET NOCOUNT ON GO
PRINT 'Using Master database' USE master GO
PRINT 'Checking for the existence of this procedure' IF (SELECT OBJECT_ID('sp_generate_inserts','P')) IS...
July 25, 2007 at 7:20 am
and when you ran this users.txt did not exist but users.txt.tmp did?
July 23, 2007 at 1:03 pm
which odbc drivers are you using for the AS400?
July 23, 2007 at 10:37 am
Is the code above in the workflow for the file import task?
Do the global variables specify the file to be imported in the task itself as well as the file...
July 23, 2007 at 10:32 am
I have found that using the executable task to execute http://ftp.exe with a script file works better than the ftp task. It allows you to do more within the...
July 23, 2007 at 10:14 am
if you look at the global variable after you set it does it look right? Also what ftp paramters are you using and what does the ftp script look like?
July 20, 2007 at 1:40 pm
most likely the data doesn't convert because decimal(14,0) is bigger than an int.
begin
declare @dec decimal(14,0)
set @dec = 99999999999999
select cast(@dec as int)
end
when it hits the row that has a bigger number...
July 20, 2007 at 12:24 pm
what happens when you
select cast(sa_LotSize as int)
from details
July 20, 2007 at 11:38 am
definitely doable through DTS and an activex script.
July 20, 2007 at 11:35 am
post the code you are using to parse the name.
Are you using the ftp task or the execute command task to get your file?
July 20, 2007 at 7:20 am
Here is some code to link a table. Won't fix your problem but may get you past it.
Function linkdata(tablename,dsnname)
DoCmd.TransferDatabase acLink, "ODBC", "ODBC;DSN=" & dsnname & ";;TABLE=" & tablename, acTable,...
July 19, 2007 at 2:53 pm
if you click preview under the source tab can you see the new fields?
July 19, 2007 at 1:52 pm
Does the file have a unique name for today's file as opposed to yesterday's file or is it the same name being replaced each day? No way I know of...
July 19, 2007 at 12:26 pm
select value from table
group by value
having count(productid) > 1
July 19, 2007 at 12:15 pm
The image you posted is a broken link because it links to your pc. You should just post the text from the error.
July 19, 2007 at 12:01 pm
Viewing 15 posts - 241 through 255 (of 434 total)