Viewing 15 posts - 46 through 60 (of 98 total)
I just tried a simple example of an SP that just selects * from Northwind..Employees and the DTS Transform picked up the columns ok. So, that's not the problem.
What about...
April 19, 2004 at 2:25 pm
Are you sure you want to give them DTSRunUI? Then they have access to all your packages, unless you password protect the other packages.
I use a proc similar to the...
April 1, 2004 at 8:05 pm
See post by powilliams for a neat example:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=17145#bm82859
March 31, 2004 at 6:18 pm
If the form/subform is the same, then you could simply change the data used by the standard form by changing the form's recordset and change the form's caption:
March 29, 2004 at 3:42 pm
You're right, Peter .
Raiserror would be a nicer way of handling it.
Bill
March 25, 2004 at 4:38 pm
I recently had an unrelated problem (nul ASCII characters in the text file that confused DTS about the end of the row). My solution was to read it in line...
March 22, 2004 at 5:59 pm
I must have missed something . I thought you simply wanted to send the email if your proc failed.
If you want the DTS task to...
March 22, 2004 at 12:47 pm
Unless you really need the email part in a separate task, just use something like this in the original Execute SQL task:
declare @err int
EXEC my_proc
set @err=@@error
--NOTE:@@ERROR returns the number...
March 19, 2004 at 6:24 pm
I haven't tried using a GV for pkg name, but this should do what you want.
(In ActiveX task):
...
SET oPkg = CreateObject("DTS.Package")
' get child pkg....
March 19, 2004 at 4:07 pm
For another option, see proc listed here:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=20&messageid=102069#bm102395
March 4, 2004 at 6:14 pm
Use Execute Process Task in DTS.
Win32 Process: C:\Program Files\Microsoft Office\Office10\EXCEL.EXE
Parameters: c:\File.xls
This will open the file and allow you to view or manipulate data. The DTS package will not continue until you...
February 27, 2004 at 5:47 pm
Vad4,
Here's a proc to "put" files:
--From posting by edk89 on sqlservercentral.com 12/09/2002
--Subsequently modified by Bill Nye 9/29/03 to include servername (for other than default instance) and...
February 25, 2004 at 2:23 pm
What about using the DTS FTP task with on success/failure, especially since you're already using DTS?
Alternatively, if you want to check if the file is there, you could use...
February 24, 2004 at 3:53 pm
Perhaps this will help.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=23&messageid=16878 (re: SQLServer/Outlook).
Bill
February 12, 2004 at 2:52 pm
Thanks for the replies Phill and FPerkins.
Fortunately, the vendor (after a couple of attempts to sort out field mappings) has been able to provide me with converted data.
In the meantime,...
January 22, 2004 at 2:43 pm
Viewing 15 posts - 46 through 60 (of 98 total)