Hi Kumar, I have used PBDOC to document the PBL's before. But with your request i dont think PBDOC gives CRDU details. Please try with PBDOC. But please let me...
Olan, Thank you for your mail. In fact my requirement is different. I already have the actual source code. I am trying to create application documentation...
Hi All I am new to Powerbuilder, and i would like to migrate powerbuilder to j2ee.In PB there are various controls like button,text box,menu and drop down.How...
venugopal reddy
v4_u@...
Nov 4, 2009 10:04 am
7582
Hi, I have a Powerbuilder application (developed in powerbuilder 11.5) that is connected to a specific instance of ASE with a specific port and instance...
Once long ago, in a universe far, far away, I remember hearing about database "pooling" and the fact PBv9 and up had built-in capability to handle such...
Hi All, I have 2 tables in 2 different database (same ASE DB ). I want to create DW getting data in the said table. Can I create an sql satement to select...
Use Transaction Object dw_1.SetTransObject(Trans_DB1) // DB1 dw_2.SetTransObject(Trans_DB2) // DB1 You can load/manipulate data from dw_1 to dw_2 OR vice...
Hi Raul, I want to combine it in 1 DW only. Thanks Cris ________________________________ From: RAUL TUICO <raulaisleen@...> To: pbhelp@yahoogroups.com ...
With the rowscopy method you can copy dw_2 data to dw_1 data which is very fast. ... From: pbhelp@yahoogroups.com [mailto:pbhelp@yahoogroups.com] On Behalf Of...
Yes, just create a script manually. Load data from dw1. then loop and copy all the data to dw2. ... From: RAUL TUICO <raulaisleen@...> Subject: [pbhelp]...
Not tested it yet, but I think you cant, you have to have an temp location of the two tables data. :-) ... From: crisanto ladines <papasmm@...> Subject:...
better is use 2 different transaction objects for both databases and you can use setransobject with 2 different transaction objects ... -- Regards Yogesh Puri ...
Hi All, My company need 2 PB Programmer here in Philippines. Company Location: Paranaque City, Philippines Qualification: At least 1 year experince in PB...
Hi All, I have exisitng PB apps that print a data in a pre-printed form. It is possible to do the same process in a Web form application? Im using PB 11.5 ...
Hi All, PB v10.2.0 build 8100 Sybase 12.5 database Windows XP, SP 3 We are running into a problem where once in a while, at irregular intervals, our...
Sounds like a memory leak. What have you done to isolate where in the code that it might be quitting? Have you considered upgrading to v10.5? I know that v10.2...
Is there a sample code to calculate busines days between two days. The daysafter gives the number of days, but I need not to include weekends, national and...
Does you face this problem in running exe or while running the project? And if exe, then whether u created it with dlls or pbds. On Tue, Jan 26, 2010 at 11:27...
Hi All, I call a select query in my datawindow but there is an error message. It says "The number of subqueries in the query exceeds the maximum allowed (16)"....
This is a standard Oracle error msg. You have a query that includes a sub-query. The sub-query is expected to return a single row, but is actually returning...
Hi All, I have a app build on PB 9.01 and data base SQL server 2000 connection using sqloledb. .Currently application locks frequently and the comments on the...
It might be that the database is locking up, not the application. This happens when a dw or a piece of SQL executes and engages in table-level locking rather...
When a datawindow is closed, it does not mean that a connection is closed. You must close the connection manually. It's good if you are just reading a table,...
One thing that will need to be changed is the sql code generated by the datawindow when it is created graphically and joins are involved. Anything with an =*...
1. If a dw is not updateable, it does not lock any data in the database 2. Look at the update properties in the dw. Updating by KEY is the minimum you want to...
Hi All, Anyone already use PB11.5 and deploy your PB apps to WEB? I have deploy one of my PB apps in the web via winform application. But when I access it to...