Viewing 15 posts - 1 through 15 (of 31 total)
I cannot use this
select *from TableA A
, TableB B
where B.reference = substring(A.trad_type,1,6)
because the reference could be SL997599 or SL9975586666 so substring won't work
March 7, 2005 at 3:57 am
Here is the code
The code is from the guy called Nigel Rivett
CREATE procedure ISL_FTP_PutFile
@FTPServer varchar(128) ,
@FTPUser varchar(128) ,
@FTPPWD varchar(128) ,
@FTPPath varchar(128) ,
@FTPFileName varchar(128) ,
@SourcePath varchar(128) ,
@SourceFile varchar(128) ,
@workdir varchar(128)
as
/*Please Maggy do not forget to use no_output so that...
February 8, 2005 at 3:33 am
I managed to get this and it works like a bomb
February 7, 2005 at 11:53 pm
Hi Guys
I got an answer from
http://www.nigelrivett.net/s_ftp_PutFile.html where Nigel use used Put, I had to use Get since I am getting this from remote server. ...
February 4, 2005 at 12:16 am
Thanks once again Dave, where did you learn SQL or maybe how? Please give me an indication because I am relying mostly on help...
November 15, 2004 at 11:05 am
Hi Dave!
I am a newbie when it comes to SQL, sorry for inconvienience, your answer worked perfectly, but I meant to say minutes
With your above answer, can you change that...
November 15, 2004 at 12:08 am
You can get arround the limitations of getdate() within UDF by creating a view:
create view dbo.vw_getdate (CurrentDateTime) as select getdate()
select * from dbo.vw_getdate (CurrentDateTime)
go
Then you can use this view within...
November 11, 2004 at 2:19 am
I still don't understand what to do, I am a newbie when it comes to UDF
November 10, 2004 at 11:20 pm
I answered myself, for those who have the same problem, this is what you can do, alter a column so that the collations are the same
ALTER TABLE TestTab ALTER COLUMN...
October 27, 2004 at 2:39 am
Hi Pete
Thanks a lot, I also used xp_cmdshell.
Both of us are still using a manual process. I want something that will check if the new files arrived and schedule a job or...
September 21, 2004 at 12:39 am
Ok Steve, this is my code in the table trigger, and it takes the parameters to the dll. I didn't write the dll it was writen by the vendor, but...
August 2, 2004 at 11:32 am
I used ALL CAPS, but still got the same error. I don't think you can call Oracle store proc from SQL
July 23, 2004 at 6:52 am
Yes I did and I get this error
Could not process object 'call FM.TDP_LOADER.insert_exec_alloc()'. The OLE DB provider 'MSDAORA' indicates that the object has no columns.
OLE DB error trace [Non-interface error: ...
July 22, 2004 at 3:30 am
Thanks
July 1, 2004 at 8:06 am
Viewing 15 posts - 1 through 15 (of 31 total)