Viewing 15 posts - 346 through 360 (of 433 total)
Am I right in saying you've got two parallel transform data tasks: One is working, the other is not?
What kind of connections are...
April 17, 2007 at 5:17 am
Hi,
Are you using a linked server to connect to the dbf file and are looking to create and index on one or all of the tables? Or have I completely...
April 17, 2007 at 4:56 am
You could use an ActiveX script to assign the filename to a Global Variable and then either continue the script to set the DataSource or use a Dynamic Properties Task after...
April 17, 2007 at 2:18 am
Okay, I think I've got it....
You'll need the ActiveX task to open the workbook that'll run the Workbook_Open Macro (you may need to change...
April 13, 2007 at 6:44 am
Try Something like this as an ActiveX task
Function Main()
dim xl_app
dim xl_Spreadsheet
set xl_app = CREATEOBJECT("Excel.Application")
set xl_Spreadsheet = xl_app.Workbooks.Open ("C:\book1.xls")
xl_app.run "Thisworkbook.RunMe" ' Macro Name to be run
xl_Spreadsheet.Save
xl_Spreadsheet.Close
xl_app.quit...
April 13, 2007 at 4:43 am
Thanks for letting me know. Always pains me when the answer is so simple.
April 12, 2007 at 7:52 am
Although my Hindi/Indonesian (haven't decided which it is yet, probably the former) is rusty, I believe that your reply involves originating from the loins of a horse and that I am...
April 12, 2007 at 7:36 am
Try this ActiveX script in a DTS package:
Function Main()
Dim objSvrHTTP
Dim fso
Dim f
Set objSvrHTTP = CreateObject("Msxml2.ServerXMLHTTP.4.0")
objSvrHTTP.open "GET", "http://www.globalindices.standardandpoors.com/data/wdpmi_bus.csv", false
objSvrHTTP.send
msgbox objSvrHTTP.responseText
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.CreateTextFile("c:\download.csv", True)
f.write objSvrHTTP.responseText
Set...
April 12, 2007 at 6:02 am
Can you post the DDL of the tables involved please?
April 12, 2007 at 4:39 am
Using a transaction could work butmay be dependant on the SQL being executed. Would
BEGIN TRAN trial
sp_executesql @Sqlstring
ROLLBACK TRAN trial
work? Or is this as dangerous as the little niggling voice...
April 12, 2007 at 4:18 am
Can you give some more information as to how the CSV file is manually downloaded from the website?
April 12, 2007 at 3:46 am
There could be a number of issues here, causes of this error can include naming, aliasing, or join errors. I'll list what I can think of:
1. Check the owner of...
April 12, 2007 at 3:44 am
If you notice the WHERE clause in the statement this will stop any rows with NULL values in the serv_lev column being inserted into tblMatchNSI.
You can have a second query...
April 12, 2007 at 3:14 am
Dave, when you say "keep the on-screen layout intact", do you mean how the DTS package looks in DTS designer? If so, continue to use the BCP method...
April 12, 2007 at 3:11 am
If it's a question asked of you then surely you should be coming up with the answer and not attempting to pass off someone else's work as your own???
April 12, 2007 at 3:02 am
Viewing 15 posts - 346 through 360 (of 433 total)