Viewing 15 posts - 2,341 through 2,355 (of 2,486 total)
Using the ODBC connection that you created, can you query the data in SQLBase and see what fields are returned?
You might be getting an extra field on either side of...
February 20, 2003 at 4:46 pm
Check out
http://www.sqldts.com/default.aspx?6,101,200,0,1
Thanks
Phill Carter
--------------------
Colt 45 - the original point and click interface
February 20, 2003 at 4:43 pm
Bring up the package properties and select the "Logging" tab. Then you can specify a server to log to.
Thanks
Phill Carter
--------------------
Colt 45 - the original point and click interface
February 20, 2003 at 4:41 pm
Well for starters it's not an SQL statement, it's a CmdExec statement. That's probably the cause of the error.
Thanks
Phill Carter
--------------------
Colt 45 - the original point and click interface
February 20, 2003 at 4:40 pm
Two things,
1) It looks like you're using the same filename for each record. Does the file get deleted successfully? Maybe your email process is stopping the file from being deleted...
February 19, 2003 at 3:34 pm
quote:
Secondly i want to give user complete independence aboiut defining the FK/PK relationships or integrity checks.
February 19, 2003 at 6:03 am
If you are on SQL 2000, you can turn on Package Logging. Then you can get timings on package and step execution from the msdb database.
sysdtspackagelog - cotains package execution...
February 18, 2003 at 4:42 pm
The message you get sort of points to an error with some SQL being used within the package.
Can you successfully execute the package via the designer?
Thanks
Phill Carter
February 18, 2003 at 4:39 pm
Yes it is possible.
To get an idea on what you can do with DTS, get the SQL Server Accelerator for BI.
http://www.microsoft.com/solutions/bi/
With this tool you define what you want your datawarehouse...
February 18, 2003 at 2:15 am
Have a look at the following discussion and see if it gives you some ideas.
Also check this article to see if you've got things setup correctly,
http://support.microsoft.com/view/tn.asp?kb=312839
Thanks
Phill Carter
Edited by - phillcart...
February 17, 2003 at 11:03 pm
I've always done client side validation. This prevents someone using SQL Injection by entering something like,
Insert into dbo.CUSTOMER(comments) value '' exec master..xp_executesql 'drop table dbo.customer'--'
Not to sure what the equivalent...
February 17, 2003 at 10:59 pm
February 17, 2003 at 4:14 pm
If you select {LF} as the row terminator you'll be able to import all the rows in the file. You'll get an extra column that has the carrige return character...
February 17, 2003 at 3:53 pm
Define "reasonably 'pretty' format" what output are you looking for?
You could put together something in ASP. I believe there is a NextResult method that allows you to process multiple resultsets.
Thanks
Phill...
February 17, 2003 at 3:42 pm
Here's a start. It shows how to reference the package, step and task objects within a script. All it really does is display the step and task name. Once you...
February 16, 2003 at 4:06 pm
Viewing 15 posts - 2,341 through 2,355 (of 2,486 total)