Viewing 13 posts - 1 through 13 (of 13 total)
Well, I gave these approaches a try, including moving cmd.exe to a new folder and setting that folder up in the path. No luck there, as, interestingly enough, Windows appears...
September 13, 2005 at 9:01 am
The code is a simple call to PKZip... I have it at work, but basically it is the following:
Job Step Code:
c:\Program Files\PKWare\PKZip.exe -add -move \\Server\Share\Folder\Zipfile.zip @\\Server\Share\Folder\FileList.lst
The file \\Server\Share\Folder\FileList.lst...
September 12, 2005 at 11:24 pm
Nope, PKZip is what is being called from inside the "Operating System Command" type Job Step. That is the problem.
September 12, 2005 at 1:01 pm
The problem we have is not that simple, unfortunately. Perhaps a bit more background is in order...
We use PKZip to move files into a zipfile before they get sent out. ...
September 12, 2005 at 12:28 pm
Consider this approach...
Three tables with an identity field for each table.
When you add an invoice, add a record to the invoice table, then use the identity from the invoive table...
March 11, 2004 at 5:46 am
If you are having problems running it from the stored profcedure, but you can run it fine from Query Analyzer, check to see what account your service is logging in...
July 10, 2003 at 11:45 am
If you are summing, then you are already using a GROUP BY clause. To limit the results to only certain dates, you can use the HAVING clause:
SELECT fullName,
...
July 8, 2003 at 1:49 pm
Add the table in with a LEFT JOIN and use the B2BError.Warning = 2 in the ON instead of the WHERE clause:
SELECT Customers.EntKey,
...
July 8, 2003 at 1:40 pm
One other thing that I found useful is to add a header to stored procedures...
/******************************************
** Procedure: {Proc_Name}
**
** Notes: {describe the use of the procedure}
**
** Author: {AKA: Who to talk to...
February 10, 2003 at 1:14 am
The problem that you have with using a Global Temp table (##) is that you get back into the permission problem that you are trying to solve in the first...
January 16, 2003 at 6:37 am
True, a delete and a DBCC CHECKIDENT (@table_name, RESEED, @id) will do the same thing, but it could potentially take a great deal more time (due to the logging nature...
January 13, 2003 at 4:20 pm
Remember, when using Temp tables, sometimes it is better to use a master calling procedure that creates the temp table. FOr example, if you are using a Global Temp...
December 26, 2002 at 12:39 pm
One rule of thumb I like to use as well is to use a Temp table if the information is going to be used more than once. If it...
July 22, 2002 at 6:59 am
Viewing 13 posts - 1 through 13 (of 13 total)