Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Execture PVSW SPROC from batch file

Status
Not open for further replies.

LesWright

IS-IT--Management
Nov 7, 2007
2
0
0
CA
Hi,

I have used Btrieve and PVSW for many years, but just simple to complex queries.

I have created a SPROC that is an update, but want to execture this without having to log into PVSW Control Center to do so.

How can I get a batch file or something to do this?

Tx
Les

PVSW 8 WKGRP

Here is my SPROC:

CREATE PROCEDURE TEST1() AS

BEGIN

Update "INVENTORY" i SET i.wholesale = (SELECT i2.wholesale FROM "INVENTORY" i2 where i2.whse = '00' and i.code = i2.code),
i.bvrtlprice01 = (SELECT i2.bvrtlprice01 FROM "INVENTORY" i2 where i2.whse = '00' and i.code = i2.code) where i.whse <> '00' and i.code = (SELECT i2.code FROM "INVENTORY" as i2 where i2.whse = '00' and i.code = i2.code) ;

END;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top