Viewing 15 posts - 136 through 150 (of 232 total)
With this solution, it appears that I would have to call this segment of code over and over until @@rowcount = 0.
In other words, I would have to put...
May 27, 2004 at 11:33 am
Alternatively, you could write the value to a table and then query the table during DTS execution for the value. You would also be able to set the value at...
May 25, 2004 at 8:22 am
You can do this in an ActiveX Script like below...
Function Main()
Dim myYearQtr
myYearQtr = InputBox ("Enter the date you would like to extract data for.", "Extract Data","4Q2003")
DTSGlobalVariables("myYearQtr").Value =...
May 21, 2004 at 7:33 am
We use the following syntax to log this information in a database:
insert into logdb.dbo.dbfilesize (db, fileID, filesize)
exec sp_MSforeachdb @command1 =
'select db_name(dbid), sf.fileid, sf.size
from sysdatabases sd, ?..sysfiles sf
where db_name(dbid)...
May 6, 2004 at 7:48 am
Steve's solution is pretty nice in that it generates the FTP script file for you using FSO. Other than that, the process is the same.
Concerning the original post, if...
April 29, 2004 at 1:12 pm
I agree with the above post by stacenic.
To be more specific, add a "Execute Process Task" as the last step. Within this task, call a batch file like...
C:\FTP_to_Unix\ftp_script.bat
This...
April 29, 2004 at 7:46 am
Have you checked this site?
http://www.ibdatabase.com/index.html
I'm out of ideas if its not a security issue with agent.
April 23, 2004 at 8:09 am
We pull data from DB2 and it seems like I remember running into an issue where we could not use the "IBM OLE DB Provider for DB2 Servers", but instead...
April 23, 2004 at 7:33 am
I would have to disagree with Linda's post.
I have created DTS packages on an WinNT workstation as well as XP, never on the server. I've been successful in scheduling all...
April 22, 2004 at 2:48 pm
So it's not an issue of having the correct drivers on the workstation where the DTS runs fine interactively from EM, but not having the correct drivers on the server,...
April 22, 2004 at 7:48 am
So Interbase 6 is installed on the same server as SQL Server, correct?
April 22, 2004 at 7:35 am
Yes, I was told it was a bug also. It was recommended that I install SP3a on the workstation with EM. I was also told that this should fix it...
April 22, 2004 at 7:31 am
That's the option I normally would use, but I know with these questions that they post, there's always an off the wall way of doing something, so I always check...
April 22, 2004 at 7:28 am
Greg,
Thanks for the reply. SQLDTS.com is often a resource that I use and recommend, but my first source is always this forum. I always get a quick response and meaningful...
April 20, 2004 at 9:16 am
Viewing 15 posts - 136 through 150 (of 232 total)