Impact Analysis Powerbuilder & Tables & Stored ProceduresI have 2 datamodels:
One with tables & stored procedures
One with datawindows & nvos
I want to do an impact analysis against a table
and list all the datawindows and stored procedures that call
it.
Is this possible? Thank you
Worst case is you can create your own relationships using the Extended
Dependency. Those can be created between any objects ( i think ). So
at a minimum you can build them.
Is there some way to do this automatically, I don't know. There's
always VBScript if nothing else.
To do IA you need to link the objects. Here is how you can do it.
...
PowerBuilder 10.5 & Oracle stored procedureDear All,
Previously I did posted two problems regarding stored
procedure with powerbuilder 10.5. During that time people
gave different suggestions. But no one agreed that same
issue simulated.
But here is my observation:
PowerBuilder 10.5 Build 4500
Oracle database Server: 9.2.0.1.0
Oracle Client installed 9.2.0.1.0
Driver used: "O90" or "O84"
When I try to declare a procedure variable for a stored
procedure in PB or If I select a stored procedure as data
source for DW, the application getting killed. But the same
works fine in the following environme...
DB2 V4 STORED STORED PROCEDURE AND POWERBUILDERI have finally been able to call a stored procedure written in cobol
from powerbuilder 6. But I still got some problem . The call will
work only if I initialize the output parameter to space (80) because
the output parameter of the stored procedure is char(80) . Here is a
sample that works.
string ls_literal_OUTMSGF
string ls_literal_RQT
Ls_literal_RQT = 'I'
ls_literal_OUTMSGF = space(80)
SQLCA.TESTPROC (ls_literal_RQT, ls_literal_OUTMSGF )
If I initialize the output variable like the following statements. It
bombs.(communication error)
setnull ( ls_literal_OUTMSGF...
Stored procedure in powerbuilderI'm having trouble using a stored procedure in Powerbuilder. I'm trying to
create a datawindow based on the stored procedure sa_conn_info, but when I
select the stored procedure initially in the design of the DW the
database-server crashes.
Any ideas?
--
I'm using Powerbuilder 5.0.02 32bit
Database: Sql Anywhere 5.5
OS: Windows 95
Jan Erik Hermansen
Norway
--
------
I'm using Powerbuilder 5.0.02 32bit
Database: Sql Anywhere 5.5
OS: Windows 95
Jan Erik Hermansen
Norway
Jan Erik Hermansen wrote:
> I'm having trouble using a stored proc...
Stored procedure in powerbuilderhi there
could anyone help me on how to define a transaction userobject to hold all
my SP on sybase system12 to be controled and managed in easy way
thanks in advance
Barents/KPMG
Waleed Seada
Create a new object inherited from a standard transaction object. You can
define local external RPC functions on this object and use the stored
procedures there. Use this object instead of the standard transaction object
for SQLCA. Then, you can call your stored procedures like:
SQLCA.proc_stored_procedure (ll_argument1, ll_argument2, ...)
HTH
"Waleed Seada" <w...
Stored procedure from PowerBuilder...Cheers all!
I'm developing a small aplication using SQL Anywhere. I have a huge stored
procedure with a lot of INSERT statements. How can I check from PowerBuilder
if they all succeeded?
I assume that DECLARE statement must have an information of the return
parameter , but I don't know how to handle it.
Anyone knows the answer?
Please don't cross post your questions.
--
David Fishburn
Sybase
Please only post to the newsgroup
TechWave 2000 July 30 - August 3 /2000
http://www.sybase.com/techwave2000
Sybase Developers Network
http://sdn.sybase.com/sdn/mec/m...
Stored procedure in powerbuilderhi there
could anyone help me on how to define a transaction userobject to hold all
my SP on sybase system12 to be controled and managed in easy way
thanks in advance
Barents/KPMG
Waleed Seada
Create a new object inherited from a standard transaction object. You can
define local external RPC functions on this object and use the stored
procedures there. Use this object instead of the standard transaction object
for SQLCA. Then, you can call your stored procedures like:
SQLCA.proc_stored_procedure (ll_argument1, ll_argument2, ...)
HTH
"Waleed Seada" <w...
Powerbuilder datawindow + stored proceduredatabase ASA 7
When we build a datawindow in powerbuilder we choose the table and the
columns to build it. There is also the possibility to build a datawindow
from a stored procedure.
Is a stored procedure running faster because the database remembers the
execution plan?
Thanks
Eric
"ontsnapt" <ontsnapt@hotmail.com> wrote:
> database ASA 7
>
> When we build a datawindow in powerbuilder we choose the table and the
> columns to build it. There is also the possibility to build a datawindow
> from a stored procedure.
>
> Is a stored...
Running Stored procedures from PowerBuilderpowerBuilder 9 and Sybase 9.0.2.3534
When we execute a stored procedure from a data window
PowerBuilder is using Exec instead of Call which is causing
an error during runtime. I know both Exec and Call can be
used in SQL Anywhere 9.0.2.3534, however Exec needs to
execute without parenthesis and Call with Parenthesis to be
successful. Is there a setting or something in Powerbuilder
to ensure the execute statements are being built correctly?
Thanks
You may need to repost to the Powerbuilder newsgroups
to get at the accurate specifics of how to fix this ... but ....
I suspect th...
No ANSI Stored Procedures from PowerbuilderLike I could perform in Powerbuilder Stored Procedures not writings in
Standard ANSI !
msenatore@softpi.it
PLEASE do not crossspost.
--
Chris Keating
Sybase Adaptive Server Anywhere Professional Version 8
iAnywhere Solutions http://www.iAnywhere.com
** Please only post to the newsgroup
** Whitepapers can be found at http://www.iAnywhere.com/developer
** EBFs can be found at http://downloads.sybase.com/swx/sdmain.stm
** Use CaseXpress to report bugs http://casexpress.sybase.com
<SPI> wrote in message
news:991F4797258FDFF90038439C85256C47.003843AC85256C47@webfo...
ORACLE Stored Procedures in PowerBuilderI am trying to pass a dynamic procedure name and dynamic number of arguments
to a DECLARE and EXECUTE (procedurename) statement within Powerbuilder 6.5.
The name and number of arguments are stored on a table and they are
syntactically extracted into variables. Any suggestions?
...
Calling stored procedure from powerbuilderI have a work flow type stored procedure that dynamically
executes other stored procedures.
When it run from the back end (SQL Server 2000) it completes
with out errors.
When it runs from powerbuilder using a datastore it behaves
differently =96
it does not complete all the procedures but returns with out
any error.
Aside of using a debugger that can steps through store
procedures
which are called from a client are there some things that
can be checked first?
Can anyone recommend such tool?
Thanks,
Alon
Thanks,
Alon.
If you have Visual C++, it will allow you to ...
Calling a DB2 Stored Procedure From PowerBuilderIs this possible? We have a stored procedure declared in DB2 on the
mainframe and, I have no idea how I would go about calling this procedure.
Any ideas/insight is appreciated.
Thanks!
>>Is this possible? We have a stored procedure declared in DB2 on the
mainframe and, I have no idea how I would go about calling this procedure.
Any ideas/insight is appreciated<<
You can use the Sybase Direct Connect driver to connect to DB2. Once that
is done, I would assume that you should be able to see and invoke the
stored procs in the same way as with stored procs in any...
Using Oracle Stored Procedures in PowerbuilderI need to populate a datawindow using an Oracle stored procedure. I went
through various faxline documents and found that the PBDBMS.put_line
option was not useful in my case, as I was going to return multiple
result sets based on cursor processing. I took the suggested option of
creating a package which had a stored procedure which was returning
various output variables of type table. The output variables correspond
to each column of the datawindow. I will have to define the procedure as
an RPC in the transaction object. I am having a problem with this. When
I go into Local external f...