提供7*24专业Sybase数据库远程及现场技术支持,Sybase ASE及Sybase SQL Anywhere数据库修复服务,
请联系电话: (微信),QQ: 289965371!
We supply technical support for Sybase ASE and Sybase SQL Anywhere, also have many years of experience in recovering data from damanged Sybase devices.
Please contact us:
Phone:
Wechat: 13811580958
QQ: 289965371 联系我们获取数据库技术支持!
Email: 289965371@qq.com
扫描下方微信,联系我们:
扫描雨翰数据恢复官方微信获取专业数据库恢复服务

 

随着Sybase被完全整合到SAP下,Sybase原来的支持网站被SAP Support Portal取代。
只有购买了SAP服务的用户才能使用账号登录SAP Support Portal进行介质下载、补丁升级、报Incident等。
考虑到Sybase数据库的初学者或者没有购买原厂服务的Sybase客户情况,现提供SAP ASE/IQ/RS/SDK/SQL Anywhere/PB等产品的BUG信息。
在SAP Support Portal网站或者google上搜索Targeted CR List for ASE,可以看到针对不同版本的CR(CR表示Change Request)简单描述信息列表。
需要注意的是:Targeted CR List for ASE列出的CR虽然绝大多数是BUG,但有一些是更改需求。
以下提供SAP ASE/IQ/RS/SDK/SQL Anywhere/PB等产品的BUG信息!

如有问题,请联系我!

QQ :289965371 联系我们获取数据库技术支持!
Email:
不仅仅包括BUG的详细描述信息,还包括首次报告BUG的平台、数据库版本以及BUG修复历史过程;有些BUG还提供了Workaround来临时解决该BUG带来问题。

 

CR:236130
CR Number:   236130
Product Name:   PB Enterprise
Product Component:   Jaguar Integration
Status:   Closed
OS:   HP-UX 11.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Feb 2004 Fixed
Description
PowerBuilder component on EAServer 3.6.1 on HPUX does not respond.



CR:236164
CR Number:   236164
Product Name:   PB Enterprise
Product Component:   DB Oracle
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
15 Jun 2004 Fixed
Description
PB 8.0 Beta 4: Requesting support for Oracle 8.1.7 According to Doc 1011566 there is only support up to 8.16



CR:236220
CR Number:   236220
Product Name:   PB Enterprise
Product Component:   Window Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
09 May 2001 Fixed
Description
Toggling Objects,Functions or Declares ddlb disables Extend ancestor script



CR:236224
CR Number:   236224
Product Name:   PB Enterprise
Product Component:   Script Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
05 Apr 2001 Fixed
Description
Defining a structure that contains another structure and defining both a global variable and an object Instance variable of this structure gives error R0096 circular reference problem.
This is a regression that appeared in PB7.02C3 and later.

>>>R0096 Application terminated:
Error: Cannot save <object> because of a circular reference problem.
Possible causes:
1. This object references another class which in turn refrences this object.
2. Some other circular reference is pointing back to this object causing a dead-lock condition.

Suggested actions:
1. Temporarily remove the circular reference from the referenced object.
2. Make your required changes to this object to refer to that object.
3. Re-add the circular reference you removed in step 1.
4. Perform a Full Rebuild (recommended).
<<<

Work-around:
- Encapsulate the global structure variable into a user object
- change the global variable to an application instance variable



CR:236226
CR Number:   236226
Product Name:   PB Enterprise
Product Component:   DW HTML
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10 Sep 2001 Not a Bug
Description
Description of Problem: PowerBuilder 702 and Jaguar Server build 35036, using web datawindow and service class object for database validations (update/insert). First time, in web dw if a record is modified (with some existing values in db) in web dw and updated then the service class object will display an error in web dw and retain all the changes. This worked fine and dw given expected behavior but if record is again modified with some other values that exist in database, dw html page gives error "Page Not Found"

Per Development:
After further investigation, I found the problem had nothing to do with our PowerBuilder.
It is the problem of the user's PowerDynamo html page(profile_trial3.htm). In the profile_trial3.htm,
when update fails, user try to still show the dw in the page. But in the function ShowError(action, error)
{
if ( action == "Update" )
{
document.writeln("<BR>"+dwMine.Generate()); // to avoid ROLLBACK error and show data on the screen still
dwMine.SetSelfLink(document.name, ''); // to avoid page refresh error
document.writeln("<B>Updates were not saved.</B><BR>");
}
}
it call dwMine.SetSelfLink(document.name, '') after calling dwMine.Generate() to generate the html string. This
is not correct. In our HTML DataWindow, we must call dwMine.SetSelfLink(document.name, '') before we call
dwMine.Generate() to generate the new html string because the html generator of dw needs the selflink to generate
the URLs for the Action of SubmitForm used by Button Action, such as Update Button in our case. If we call dwMine.
generate before calling dwMine.SetSelfLink, then the html generator can not generate the URL for the Action of
SubmitForm used by Update Button. You can verify this by looking at the html source of the second page in our case
from the browser. You will find <FORM NAME="dwMine_submitForm" METHOD=POST ACTION="****** ERROR NO
SELF LINK SPECIFIED! ******"> .Then when we do update in the new html page, the submit form without action
will submit NULL URL to Web Server. Thus we can not get any return page. This is the third page we see in our case.

To correct this problem, user must call SetSelfLink before calling Generate() to generate the html string of dw. The following
statement is the correct one.
{
if ( action == "Update" )
{
dwMine.SetSelfLink(document.name, ''); // to avoid page refresh error
document.writeln("<BR>"+dwMine.Generate()); // to avoid ROLLBACK error and show data on the screen still
document.writeln("<B>Updates were not saved.</B><BR>");
}
}

2.
In Jaguar 3.6, when HTML DW fails in update database, the follow call of function Generate() will always return NULL.
Thus we can not show the datawindow again. This is because we call TransactionSever.SetAbort() in our standard
HTML DataWindow when update fails. In Jaguar 3.5, this call will not throw a TransactionRolledbackException. But in
Jaguar 3.6, it does.Then the follow call of Generate() will always return NULL.
We can overcome this problem by setting set the DataWindow/HTMLGenerator or HTMLGenerator80 component
property com.sybase.jaguar.component.tx_outcome=failed in Jaguar 3.6. Setting this property to failed will ensures
that Jaguar does not throw a TransactionRolledbackException...



CR:236256
CR Number:   236256
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   Microsoft Windows 2000
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Feb 2004 EOL'd version. Not to be Fixed.
Description
With the library painter opened. Double-click on a window to open and then trying to edit the datawindow from the control list results in a crash. This is a very busy window with many controls and inheritance.

PB should crash with these objects.

When the Datawindow is edited directly by clicking on it in the library painter or by simply opening it, the same steps do not result in a crash.



CR:236299
CR Number:   236299
Product Name:   PB Enterprise
Product Component:   Script Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.00
Fixed Version Build Resolution Date Closure Code (If Appropriate)
12 Apr 2001 Fixed
Description
The problem is that when a newly created user event is deleted, PB will gpf in 2 situations when in the
event list pane or in the script painter.



CR:236306
CR Number:   236306
Product Name:   PB Enterprise
Product Component:   PB GUI
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
5029 25 Apr 2001 Fixed
18 May 2001 Fixed
Description
PB 8 Beta 4 build 4020, 5024
1) Cannot import to-do list from one target to another in the same workspace , you get an error "Failed to import items for target pb8_test (d:\pse\sample). pb8_test(d:\pse\sample) is not the currently selected target. " the list gets displayed in the list in the background on clicking ok on the messagebox it goes blank. I think the reason for the error is because we are now storing the path and target name for the items in the to-do list which is probably restricting the import.
2) If you try to import an exported to-do list from workspace 1 target to workspace 2 target then no error message on import but it still comes up blank.

3) Import a pb 7 exported to-do list into pb 8 , pb 8 will crash in msvcrt.dll



CR:236314
CR Number:   236314
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
24 Apr 2001 Fixed
Description
Reproduced in : PB 8 Beta 4 build 4020, 5024
Could not reproduce in PB 7.03.10061
1) If you disable autoretrieve on a dddw column , save it , do a retrieve the dddw column gets populated with data column value not display column value and no data in the dropdown.

2) Addition of autoretrieve to a column that is a dropdowndatawindow in a datawindow does not retrieve the dropdowndatawindow until datawindow is close and reopened. This occurs when the datawindows has autoretrieve disabled and then the user enables it. When you create the datawindow that will be the drop down datawindow ensure you disable autoretrieve. Now create a datawindow that does not autoretrieve and add this datawindow as a dropdown datawindow. One you create this datawindow save it. Now enable auto retrieve and for a retrieve and test in the preview pane of the datawindow painter observe how dropdowndatawindow is not populated. Save again and exit the datawindow then reload. Now watch how since autoretrieve was on from point of opening how the dropdowndatawindow now populates correctly.



CR:236334
CR Number:   236334
Product Name:   PB Enterprise
Product Component:   DW Printing
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10 Sep 2001
Description
When trying to print a label datawindow the right edge of the data doesn't print - it gets truncated on the right side.
User has chosen Laser Address 1.33 x 4.00 5162, 5262 as the Predefined Label, and has taken the defaults. The left label looks okay, the right side has truncated data.



CR:236398
CR Number:   236398
Product Name:   PB Enterprise
Product Component:   DB Oracle
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
18 Apr 2001 Fixed
Description
When using the PWDialog DBParm with Oracle 8, the dialog prompting the users for a new password is incomplete. "ORA-28001: the password has"
"expired" is missing



CR:236408
CR Number:   236408
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
16 Mar 2004 EOL'd version. Not to be Fixed.
Description
After fix to 208069, Rows disappear from Preview View upon modification of crosstab in 7.0. Problem does not occur in the PB 8 beta codeline.

Workaround: simply re-retrieve the preview view and the crosstab will display as it should.
Workaround Description
 Re-retrieve the preview view.



CR:236430
CR Number:   236430
Product Name:   PB Enterprise
Product Component:   MTS Integration
Status:   Closed
OS:   Microsoft Windows 2000
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
7.0.3 10085 18 Jun 2001 Fixed
Description
Accessing a pb com component thru com+ will
always return false for the isintransaction.



CR:236431
CR Number:   236431
Product Name:   PB Enterprise
Product Component:   WT - Wizard - Dynamo
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
12 Apr 2001 Fixed
Description
PB 8 Beta 4 build 4020 :
If dynamic website is not created in advance then when one creates a Deployment Configuration, then on Finish you get following error : "Create Mapping Failed. Cause is Create mapping routine for this site type still under construction"
Workaround Description
 Create a Dynamic File Site from Dynamo before you create the Deployment configuration and point to it in the wizard.



CR:236496
CR Number:   236496
Product Name:   PB Enterprise
Product Component:   Language - Runtime
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
ENHANCEMENT REQUEST
FindClassDefinition should be downwards compatible
Enhance the FindClassDefinition to be able to get the class definition in a PB7 application from objects in a PB6 PBL. At the moment you only get a Null object pointer



CR:236546
CR Number:   236546
Product Name:   PB Enterprise
Product Component:   Browser
Status:   Closed
OS:   Microsoft Windows 2000
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Feb 2004 EOL'd version. Not to be Fixed.
Description
WIth library painter open and using the Object Browser, a user object function was selected and right mouse was used to try to copy. This resulted in a crash. Other user objects did not crash but this crash is reproducible every time.

Function is over loaded but other functions also do not crash.



CR:236551
CR Number:   236551
Product Name:   PB Enterprise
Product Component:   UO Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
27 Apr 2001 Fixed
Description
PB 8 Beta 4: Memory leak opening and closing nvos in painter



CR:236564
CR Number:   236564
Product Name:   PB Enterprise
Product Component:   PB GUI
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
14 Jun 2004 Not reproducible with latest version of the product available as of Resolution Date
Description
In the title bar of the script view in the painters, events show up as:<ObjectName> inherited from <ObjectName> for <EventName> returns <variable>
whereas functions show up as: <Functionname> <argumentlist> returns <variable>

The customer believes that this should be consistent, and something more like: <MethodName> for <objectname> inherited from <objectname> returns <variable>



CR:236567
CR Number:   236567
Product Name:   PB Enterprise
Product Component:   PB GUI
Status:   Closed
OS:   Microsoft Windows 2000
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
29 Mar 2001 Not a Bug
Description
A 'character sensitive' drop down list displays as soon as you type a letter in the file name field.
Windows 2000. For Example, click New Workspace. Opens the 'New Workspace' dialog box.
Type a letter (e.g; a) in the file name field. You'll see a drop down appear. If there is no file that starts with that letter, it will "turn it" into a drive letter. Otherwise it will list the files that start with that letter, regardless of the file extension.

Apparently, this ddlb contains nearest matches to the letter entered, that are available in the 'Save in; folder (includes drive letters, folder names etc starting with the letter entered).

This does not happen in NT.



CR:236592
CR Number:   236592
Product Name:   PB Enterprise
Product Component:   System Runtime Functions
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
Allow all the available pointer enumerated data types as SetPointer() args.

SetPointer accepts the following possible arguments
Arrow!
Cross!
Beam!
HourGlass!
SizeNS!
SizeNESW!
SizeWE!
SizeNWSE!
UpArrow!

But windows, controls, dws also include the following stock pointers

Help!
Size!
No!
Hyperlink!
AppStarting!
Icon!

Customer would like to see all these available as arguments for SetPointer.



CR:236594
CR Number:   236594
Product Name:   PB Enterprise
Product Component:   Window Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
29 Mar 2001 Duplicate
Description
PB crashes if opening a lot of objects (for example 16 datawindows and a few NVOs)

workaround:
close some objects and keep only a few open.
Workaround Description
 close some objects and keep only a few open.



CR:236602
CR Number:   236602
Product Name:   PB Enterprise
Product Component:   Language - Runtime
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
21 Aug 2001 Fixed
Description
Memory Leak when repeatly execute ClassDefObject.FindMatchingFunction. The problem is related to CR229732.
Workaround Description
 No workaround



CR:236603
CR Number:   236603
Product Name:   PB Enterprise
Product Component:   DB Oracle
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
7.0.3 10112 16 Jun 2004 Fixed
Description
In the DataBase painter PowerBuilder crashes if you a drag table to the layout view while retrieving from another table. This appears to be specific to connecting to Oracle via the native driver PBO84xx.DLL.



CR:236615
CR Number:   236615
Product Name:   PB Enterprise
Product Component:   DW - Runtime
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0 GA 6010 20 Apr 2001 Fixed
Description
GPF using datawindow dot notation to reference a column in a nested report. Regression.



CR:236631
CR Number:   236631
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0.1 7089 18 Sep 2001 Fixed
Description
Crosstab w/ ASE stored procedure crashes on retrieve when display expressions used



CR:236653
CR Number:   236653
Product Name:   PB Enterprise
Product Component:   Library Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
29 Mar 2001 Duplicate
Description
PB8 Beta4- PB crashes when changing workspaces in library painter.



CR:236704
CR Number:   236704
Product Name:   PB Enterprise
Product Component:   Jaguar Integration
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10 Apr 2001 Presently Not Targeted For Any Future Release Of This Product
Description
Virtual memory will continue to gradually increase when one client is calling
a pb component under a rapid test (for next loop). The component is set up for
instance pooling and auto demarcation is turned on.

Problem happens on both nt and solaris. On nt after 1000 iterations, the vm size goes up
about 200k. On solaris, virtual memory started at 41008. After 17000 iterations the vsz was
161352. Snapshots thruout this test showed the vsz go up from:
41008
161056
161064
161080
161088
161096
161120
161128
161152
161160
161176
161200
161328
161352

The increase is gradual and it shows that the vsz doesn't appear to level off.



CR:236710
CR Number:   236710
Product Name:   PB Enterprise
Product Component:   Project Painter
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
Customer would like the project painter library list to have LiveScroll.



CR:236795
CR Number:   236795
Product Name:   PB Enterprise
Product Component:   Debugger
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   6.5.1
Fixed Version Build Resolution Date Closure Code (If Appropriate)
24 Apr 2001 Fixed
Description
GPF in Debugger doing step in , in a userobject that uses autoinstantiate property.
Happens when no return value on function of uo.



CR:236800
CR Number:   236800
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
24 Apr 2001 Fixed
Description
PowerBuilder crashes if you try to add a report to an existing datawindow if you have too many datawindows (255+) listed in your library path. Very similar to 207779, but that was for composite datawindows. This is for nested.

Workaround: Remove a PBL (or more, if necessary) from the library path so that fewer datawindows are listed. You can then create the nested report, and add your library files back to the library path when the nested report has been saved.
Workaround Description
 Remove a PBL (or more, if necessary) from the library path so that fewer datawindows are listed. You can then create the nested report, and add your library files back to the library path when the nested report has been saved.



CR:236802
CR Number:   236802
Product Name:   PB Enterprise
Product Component:   Jaguar Integration
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Feb 2004 EOL'd version. Not to be Fixed.
Description
When using remote debugging and adding breakpoints,
the breakpoint is not always added to the line of code that was intended.

For example the following code:
If of_VerifyState( ls_ThisMethod ) <> SUCCESS Then
ll_RC = FAILURE
GOTO CLEANUP
End If

if you try to add a breakpoint on the line of "if of_verifystate....", the breakpoint will show up at the next line
(ll_rc = failure).



CR:236812
CR Number:   236812
Product Name:   PB Enterprise
Product Component:   Workspace and Targets
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Apr 2001 Fixed
08 May 2001 Fixed
Description
PowerBuilder crashes if the full path leading to a PBL name in the Library Path properties is deleted. If, on the other hand, you enter a PBL name without including a path, an error message displays. PowerBuilder does not crash.



CR:236817
CR Number:   236817
Product Name:   PB Enterprise
Product Component:   Workspace and Targets
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10 Aug 2001 Fixed
Description
PB8 Beta4: "In the System Tree, highlight a workspace or target and select Run from the popup menu. If you highlighted a workspace, a dialog box opens that lets you select the target to be run".

If you highlight a workspace, the dialog box does not display, the previous target that ran is the one that runs.



CR:236861
CR Number:   236861
Product Name:   PB Enterprise
Product Component:   DB ODBC
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
16 Apr 2001 Fixed
Description
Using an ODBC connection to ASE 11.x with an identity column as the table key, the value of the id column is not added to the datawindow upon update. User must re-retrieve the data.
Workaround Description
 There isn't really a workaround except to re-retrieve the data.



CR:236878
CR Number:   236878
Product Name:   PB Enterprise
Product Component:   Script Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   6.5.00
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10 Sep 2001 Fixed
Description
Declaring a cursor and pasting SQL for Cursor Update:
RMB->Paste Special->SQL->Cursor Update

When pasting a SQL statement for Cursor Update, there are no columns in the Update Column Values dialog
to choose from, if the table name in the declared cursor has the keyword dbo before it.



CR:236900
CR Number:   236900
Product Name:   PB Enterprise
Product Component:   Library Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
06 Apr 2001 Not a Bug
Description
Library Painter: Wants Set Root RMB back, and wants it under different menu

Per Development: Set Root is on RMB if you click in empty space. Also Set Root will remain under the View menu to be consistent with the prior release.



CR:236903
CR Number:   236903
Product Name:   PB Enterprise
Product Component:   DB Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
04 Sep 2001 Fixed
Description
Database Painter: would like RMB option in Results pane for database painter for Save Rows As...



CR:236907
CR Number:   236907
Product Name:   PB Enterprise
Product Component:   Library Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
12 Aug 2001 Fixed
Description
The following is taken from the Online Help for PB 8.0 build 6002.

To rebuild a target:

Select the target in the Library painter and select Entry>Target>Incremental Build or Entry>Target>Full Build from the menu bar.

or

Select the target in the System Tree or Library painter and select Incremental Build or Full Build from the popup menu.


The options are available in the above cases except for in the library painter. In both the list and tree view if you select the target and then right mouse to bring up the pop up menu the only options available are "Delete", "New" and "Properties".

Either this is a missing option in the library painter or it is a documentation and online help bug.



CR:236918
CR Number:   236918
Product Name:   PB Enterprise
Product Component:   PB GUI
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
09 Apr 2001 Fixed
Description
Toolbar icons are missing from the CashTrak sample app as is indicated in the online help.
Description of Problem: Opened on request from Doc team. Did not find the following buttons in toolbar as shown in online help(on "viewing an account statement"): Checking / Saving / Credit Cd / Loan



CR:236921
CR Number:   236921
Product Name:   PB Enterprise
Product Component:   PB GUI
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
21 May 2004 Presently Not Targeted For Any Future Release Of This Product
Description
Description of Problem:
The Help-About window has a disclaimer which still has "Powersoft" as the vendor. This should be changed.



CR:236923
CR Number:   236923
Product Name:   PB Enterprise
Product Component:   Language - Compiler
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
24 Apr 2001 Fixed
Description
PB 8.0 Beta 4: Migration problem from 7.0; calling dynamic functions from any.



CR:236957
CR Number:   236957
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 RC
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0 RC 6013 20 Apr 2001 Fixed
Description
PowerBuilder crash saving a DataWindow Grid which contains a computed field with functions CumulativeSum or CumulativePercent. Only if in a column in the visible the computed column is used with an expression like:
if ( compute_1 =number_column, 0, 1)



CR:236972
CR Number:   236972
Product Name:   PB Enterprise
Product Component:   DB Profile
Status:   Closed
OS:   Microsoft Windows 2000
Original Version:   8.0 GA
Fixed Version Build Resolution Date Closure Code (If Appropriate)
11 Apr 2005 Not reproducible with latest version of the product available as of Resolution Date
Description
DB Profile painter PowerBuilder 7
===========================
PB 7 on windows 2000 crashes if
- Oracle client is 8.1.7
- You use O84 PB driver
- You test the DB connection through the DB profile and then you click on CONNECT.



CR:236985
CR Number:   236985
Product Name:   PB Enterprise
Product Component:   Window Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
6006 23 Apr 2001 Fixed
Description
PB 8.0 beta 4 build 6002, PB 7.0.3 build 10063

After placing an editmask control and right justifying it, PB will crash if you go to the toolbar and try to place a label on the window.



CR:237041
CR Number:   237041
Product Name:   PB Enterprise
Product Component:   DW DDDW
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
08 Aug 2003 Fixed
Description
When sharing data from DW_1 to DW_2 then setting QueryMode on the primary, and if there's a dddw on DW_1 with "Always show arrow" option checked it gives GPF. Only doing this operation on the secondary should give error:
WA:
dw_1.object.dept_id.dddw.UseAsBorder='no'

dw_1.object.datawindow.querymode='yes'

dw_1.object.dept_id.dddw.UseAsBorder='yes'

ie. just disabing the "always show arrow" property before the call to query mode, and setting it after the call is made.
Workaround Description
 dw_1.object.dept_id.dddw.UseAsBorder='no'

dw_1.object.datawindow.querymode='yes'

dw_1.object.dept_id.dddw.UseAsBorder='yes'

ie. just disabing the "always show arrow" property before the call to query mode, and setting it after the call is made.



CR:237042
CR Number:   237042
Product Name:   PB Enterprise
Product Component:   Automation
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
20 Apr 2001 Fixed
Description
PB 8 :
The Automation Server Generator creates a REG file containing a reference to PBVM70.DLL instead of PBVM80.DLL
[HKEY_CLASSES_ROOT\CLSID\{EB19441F-1EC5-11D5-A429-0002A51C80AC}\InProcServer32]
@="pbvm70.dll"
Workaround Description
 Edit The reg file and change PBVM70.DLL By PBVM80.DLL



CR:237049
CR Number:   237049
Product Name:   PB Enterprise
Product Component:   DW - Runtime
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Feb 2004 EOL'd version. Not to be Fixed.
Description
Using Bind variables (disablebind=0), multiple updates cannot be achieved if there is a SQL statement in the SQLPreview event.
Workaround Description
 W/A 1 : DisableBind=1
W/A 2 : Remove any SQL script from the SQL Preview event.



CR:237062
CR Number:   237062
Product Name:   PB Enterprise
Product Component:   Help
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
Requests additional online help for supported Oracle features:

1. Update the online help to indicate that the datawindow painter supports Oracle's user-defined datatypes,
and provide a link to the portion of the online documentation that describe it.

2. Update the online help and the online documentation with regard to whether Oracle's user-defined
datatypes are supported in other SQL operations (i.e., embedded SQL, transaction RPCFUNC).

3. Update the online help to provide more information about support for REF CURSORS within embedded SQL,
with links to the appropriate portions of the online documentation.



CR:237072
CR Number:   237072
Product Name:   PB Enterprise
Product Component:   DW - Runtime
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
6.5.1 7012 22 Jun 2001 Fixed
Description
Grid datawindows with groups have horizontal lines missing after each group header.



CR:237078
CR Number:   237078
Product Name:   PB Enterprise
Product Component:   DW HTML
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
7.0.3 10068 25 Apr 2001 Fixed
Description
When viewing an htmldw in Internet Explorer 5.5, the
background color of the detail band is not wide enough. It does not cover all
of the colors.

Development states: it appears to be a property of the <SPAN> tag that
doesn't appear to be set properly.



CR:237079
CR Number:   237079
Product Name:   PB Enterprise
Product Component:   Documentation
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
30 Apr 2001 Fixed
Description
Online help - generateresultset - syntax 1 - example 0- if loop :

IF ds_datastore.Retrieve() <> -1 THEN
... // report error and return
END IF

It should be:
IF ds_datastore.Retrieve() = -1 THEN
... // report error and return
END IF



CR:237082
CR Number:   237082
Product Name:   PB Enterprise
Product Component:   DW HTML
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
7.0.3 10068 25 Apr 2001 Fixed
Description
In a netscape 4.7 browser using a htmldw, the last column header
appears in the detail band of the dw.

Also the group header text doesn't appear to be formatted.

While testing the fix for cr228091, these problems appeared. Works ok in Internet Explorer.
Also changing the display from 800 x 600 to 1152 x 864 appears to fix the problem.
Workaround Description
 Change display from 800 x 600 to 1152 x 864



CR:237086
CR Number:   237086
Product Name:   PB Enterprise
Product Component:   UO Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
24 Apr 2001 Fixed
Description
PB8 Beta4: Crash in descendant function painter when accessing script of event where ancestor throws exception



CR:237089
CR Number:   237089
Product Name:   PB Enterprise
Product Component:   Documentation
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
11 Apr 2001 Presently Not Targeted For Any Future Release Of This Product
Description
The Readme.1st file for the CashTrak example needs to be updated as it contains references to obsolete or sometimes unsupported versions of DBMSs. Also contains step-by-step instructions that need to be updated to the new IDE.

Per Development: The CashTrack example will not be included with the PowerBuilder 8 release.



CR:237138
CR Number:   237138
Product Name:   PB Enterprise
Product Component:   DW Display
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Feb 2004 EOL'd version. Not to be Fixed.
Description
PowerBuilder 7:
When the focus in on the column, a datetime without edit format is formated like : dd/mm/yy
Now if the column had an edit format in the past but you have removed it, the date displayed is like
dd/mm/yy 00:00:00 when the column takes the focus.
Workaround Description
 Add a generic edit format :
Edit.Format = [general]



CR:237151
CR Number:   237151
Product Name:   PB Enterprise
Product Component:   PB GUI
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
New Feature Request: Allow copying from favorites (clip window) into dialogs (ie, copying PFC library list into library search path dialog during new target creation).



CR:237152
CR Number:   237152
Product Name:   PB Enterprise
Product Component:   Workspace and Targets
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
PB8.0 Enhancement Request: Provide capability to edit clipping text



CR:237159
CR Number:   237159
Product Name:   PB Enterprise
Product Component:   WT - System Tree
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
When you RMC an object from the system tree, and choose "Print" the dialog box can be confusing. There are print options for Window/User Object, Menu and Application, even if the object you are printing is a datawindow. User would like to see this dialog be context-sensitive--if a window is being printed, show Window options; if it is an application, show application options, and so on.



Additionally, when you press "Help" from this dialog, the help contains reference to Application, Menu and Window/User Object--this should be changed as well to reflect that the dialog is context-sensitive (if that change is made)



CR:237163
CR Number:   237163
Product Name:   PB Enterprise
Product Component:   Library Painter
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
Enhancement request to allow datawindows to be found by name in library search would be helpful in maintaining large applications.

Would be heplful to be able to search a pbl for an object contained in that pbl but which is not referenced anywhere else. Currently object is found only if it's name is included in the properties (and properties are searched).



CR:237178
CR Number:   237178
Product Name:   PB Enterprise
Product Component:   Workspace and Targets
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
PB 8.0 Enhancement request: Increase clip string length.



CR:237181
CR Number:   237181
Product Name:   PB Enterprise
Product Component:   Jaguar Integration
Status:   Closed
OS:   Solaris 2.6
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
29 Oct 2002 DEFER
21 Dec 2001 Presently Not Targeted For Any Future Release Of This Product
29 Oct 2002 DEFER
Description
PB components hanging in jaguar on multicpu NT machine



CR:237213
CR Number:   237213
Product Name:   PB Enterprise
Product Component:   Debugger
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0.4 23 Mar 2004 Fixed
Description
When using global functions defined eg. for datawindow expressions, while debugging the debugger breaks to this function automatically although no breakpoints are set. This is expected behavior so far but when you are in this global function and you try to get out of it eg. using jump out/over it is not possible anymore.

Trying to stop debugging and restarting it will cause a GPF.



PER DEVELOPMENT: A partial fix has been implemented for this problem. However, in the case when the global function is called during the WM_PAINT windows message processing, the user is limited to using only the Continue command to exit the debugger. The reason for this is as follows: When the current running position stops at the WM_PAINT event script or function, the user clicks Step In, Step Over or Step Out and the script is executed completely. The app window will be shown and another WM_PAINT will be fired. Thus the next event or function script to be executed will be also the WM_PAINT processing. Then Step In, Step Out, or Step Over will stop at this processing again. This is current behavior of our PB VM.



In the user's test case supplied for this CR, when the datawindow is painted (during WM_PAINT), the expression of the computed field will be evaluated and hence the global function is called. This is just the situation of our defect. In other cases, there is no problem in debugging a global function. As you know, the WM_PAINT message is a special windows message and it will be fired repeatly by the system.



Unfortunately, we cannot disable the Step In, Step Over, and Step Out option in this case since in the debugger UI context, it is not possible for PB to know that current script processing is for WM_PAINT message.



The problem interacting with WM_PAINT is a known limitation of PB VM and debugger for a long time. In order to fully implement a solution, a full rewrite the debugger would be required. This cannot be addressed in an EBF or point release.



CR:237225
CR Number:   237225
Product Name:   PB Enterprise
Product Component:   Installation
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Apr 2001 Fixed
Description
Custom Install: Foxpro ODBC selection missing from the Current settings window (which reviews the selections made). Proceeds to install correctly, but summary page is incorrect. For both Infomaker and PowerBuilder.



CR:237230
CR Number:   237230
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
6011 20 Apr 2001 Fixed
Description
PB 8.0 Beta 4: Wrap Height default value of .5 when creating a freeform dw doesn't stick, it is changed to 0..



CR:237252
CR Number:   237252
Product Name:   PB Enterprise
Product Component:   DW HTML
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
20 Jul 2004 Fixed
Description
Script (javascript) in Client-side events (Clicked, ButtonClicked, etc..) do not get copied into the HTML source of a web datawindow page.

If do the same on a simple command button on a blank page (eg. script in the OnClick event), there is no problem.



CR:237253
CR Number:   237253
Product Name:   PB Enterprise
Product Component:   Jaguar Integration
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
26 Apr 2004 Presently Not Targeted For Any Future Release Of This Product
Description
ORBLogFile not created if path to file does not exist. No error occurs. This should either produce an error, create the path and file, or be documented.



CR:237263
CR Number:   237263
Product Name:   PB Enterprise
Product Component:   PB GUI
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
1.Open... dialog: not possible to see the whole target or PBL name if the path is long.

2. Would like dw sort dialog better. Either add a split pane to allow for width adjustment, or add a "flyover" so that the full name would show if the mouse pointer were over the name.

3. Same as #2 for DW Specify Group dialog, or at a minimum make it wider - it is a very narrow dialog

4. DW Update properties dialog - not bad, but moving Primary Key button up slightly would allow much more room for the lists to display wider.

5. Again on DW Update properties dialog, make the Identity: dropdown much wider



CR:237310
CR Number:   237310
Product Name:   PB Enterprise
Product Component:   DB ODBC
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
Ct would like to have the OptSelectBlob dbParm parameter also implemented for the odbc driver for MS SQL Server from PB 7.03 and higher.



CR:237313
CR Number:   237313
Product Name:   PB Enterprise
Product Component:   DB Oracle
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
11 Dec 2002 Fixed
Description
PB 8.0: Enhancement Request: Need examples of Named notation to specify the procedure arguments in Oracle stored procedures.



CR:237314
CR Number:   237314
Product Name:   PB Enterprise
Product Component:   Library Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10 Aug 2001 Fixed
Description
PB8 Beta: Chapter 5 of PB User's Guide "Working with Libraries" - page 125 - following section:
"What you cannot do in the Library painter:
You cannot migrate or open objects in PowerBuilder libraries that are not on the library list.
--> You also cannot create new objects or rename a library."

1) I could RMB a current target in Library TreeView and create a new object.
2) I could also RMB any target (outside my workspace) and create a new object - but could save it only in my current libraries. Just a variation of step 1 constrained by the fact that Save dialog only shows current libraries to choose from.



CR:237325
CR Number:   237325
Product Name:   PB Enterprise
Product Component:   SQL Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0 RC 6016 25 Apr 2001 Fixed
Description
Using the Paste option from the menu causes PB to crash in PBSCR80.dll



CR:237330
CR Number:   237330
Product Name:   PB Enterprise
Product Component:   DW HTML
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10080 03 Jul 2001 Fixed
Description
When you do HTML Preview on a grid datawindow, spaces appear between some of the columns.



CR:237332
CR Number:   237332
Product Name:   PB Enterprise
Product Component:   Jaguar Integration
Status:   Closed
OS:   Solaris 2.6
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Feb 2004 EOL'd version. Not to be Fixed.
21 Dec 2001 Presently Not Targeted For Any Future Release Of This Product
Description
Large amounts of memory are being consumed
while stress testing pb components thru jaguar

Jaguar 3.5 C5 Jaguar 3.6.1 C1
Start Stop Start Stop
Test1 ? 555640 (hung) 37936 595304 (hung)
Test2 279752 945488 (hung) 38024 882824 (worked ok)
Test3 41444 660600 (hung) 38032 630752 (hung)
Test4 41096 925544 (Worked) 38032 762656 (worked ok)

Test1 - Using getcustomeronly with 200 iterations and 10 clients and link/unlink with
200 iterations with 5 clients on two separate workstations.
Test2 - Using getcustomeronly with 200 iterations and 10 clients on two separate
client workstations
Test3 - Same as test1 except jaguar is bound to 1 cpu
Test4 - Same as test2 except jaguar is bound to 1 cpu



CR:237333
CR Number:   237333
Product Name:   PB Enterprise
Product Component:   Library Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Apr 2005 Presently Not Targeted For Any Future Release Of This Product
Description
PB8 Beta: Migrate Target from Library Painter causes error
Review Status
 04/25/2005:

This CR was reviewed and closed as part of the Quarterly CR Review process. It is "Not targeted for any future release".



CR:237357
CR Number:   237357
Product Name:   PB Enterprise
Product Component:   DW HTML
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0 Beta 4 6017 26 Apr 2004 Fixed
Description
PB 8.0 Beta 4: Grid HTML dw does not launch the Javascript generation wizard.



CR:237412
CR Number:   237412
Product Name:   PB Enterprise
Product Component:   Jaguar Integration
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
05 Aug 2003 Not a Bug
Description
Problem when returning a string with accent from a PB component. This problem exist ONLY if Jaguar Server codeSet is equals to UTF8.
for example a function in a pb component in Jaguar returning accent characters like:
RETURN "殚"

Workaround:
1. change the codeset of Jaguar for instance to iso_1
or
2. convert the string into a blob in the server and return a blob instead of the string.
In the client application revert it back to a sting.
Workaround Description
 1. change the codeset of Jaguar
or
2. convert the string into a blob in the server and return a blob instead of the string.
In the client application revert it back to a sting.



CR:237450
CR Number:   237450
Product Name:   PB Enterprise
Product Component:   Debugger
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
13 Jun 2001 Not reproducible with latest version of the product available as of Resolution Date
Description
7.0.3 Crash Dump: Getting GPF while using PBE debugger.
Resolved with 7.0.3 build 10069 and after.



CR:237453
CR Number:   237453
Product Name:   PB Enterprise
Product Component:   DB Oracle
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
6013 30 Apr 2001 Fixed
Description
Oracle rowid datatype is incorrectly mappped to a char(4) column. Both for a datawindow and in the database painter.

Probable dupe of 218438, but not identical.

WORKAROUND:
Modify the datawindow column and change it from char(4) to char(25).

For data manipulation, you would have to temporarily create a datawindow, do the above modification, and then make your data changes through the datawindow preview view.
Workaround Description
 modify the datawindow column and change it from char(4) to char(25).

For data manipulation, you would have to temporarily create a datawindow, do the above modification, and then make your data changes through the datawindow preview view.



CR:237493
CR Number:   237493
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10079 27 Jun 2001 Fixed
Description
When the following requirements are met, a preview causes a gpf in the composite datawindow.
- Draw object in the detail band (oval, rectangle)
- The objects mentioned above have an expression set on the pen.color
- The underlying sql is in the order as demonstrated in the testcase.
Workaround Description
 Could be done by either
1. Leave out the expression (if possible).
or
2. Rearrange the underlying sql select syntax



CR:237494
CR Number:   237494
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
10080 25 Jun 2001 Fixed
Description
When placing draw objects into the detail band having a expression set eg. on pen.color, the expression is not evaluated in the composite datawindow.
From CR 155359 it is said that this is supposed to be working from PB 8 onwards only, but in issue CR 237493 it works already in PB 7. But when creating new datawindows it does not.



CR:237495
CR Number:   237495
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0 Beta 4 6014 20 Apr 2001 Fixed
Description
When assigning the visible attribute an expression in a grid datawindow and saving the object, reopening it -> the expression will be lost.



CR:237517
CR Number:   237517
Product Name:   PB Enterprise
Product Component:   Window Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0 Beta 4 6015 24 Apr 2001 Fixed
Description
GPF going to function script after deleting user events from Event list.



CR:237546
CR Number:   237546
Product Name:   PB Enterprise
Product Component:   Documentation
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
18 Sep 2001 Fixed
Description
Is this a bug or is this a documentation error???

The following is the text of the online help for " Search Library Entries dialog box"

Use this search tool to search for strings in the currently selected target, library, or objects.
To search multiple library entries, press SHIFT+click to select contiguous library entries or CTRL+click to select non-contiguous entries.

I could not do a SHIFT + click or CTRL + click to select multiple libraries. A few observations here (I may have missed something):

1. I cannot make multiple selections in Library Treeview period, whether it is at the target/pbl/object level .

2. It can be done only in the Listview. For that, the root has to be changed appropriately(for e.g; to a directory containing multiple pbls). However, I cannot open more than one pbl at a time(in Listview)
if I decide to select multiple objects from two pbls.

3. For searching multiple targets, I will have to use Entry>Target>Search. This is, however, only one target at a time.

4. For searching multiple libraries - I don?t know how this can be done. Even if I have two Listviews with objects from different libraries, I can only select and search from one Listview at a time.
I guess if I perform a search on a target, all pbls in the library list will be searched. But I cannot perform a single search on multiple targets in my workspace.

5. For searching objects, I will have to use Listview. However, I can only search objects one pbl at a time (see 2. above).



CR:237551
CR Number:   237551
Product Name:   PB Enterprise
Product Component:   Browser
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
15 Jul 2004 Presently Not Targeted For Any Future Release Of This Product
Description
PB 8.0 Enchancement: Browser Target dropdown needs to be wider or add a horizontal scroll bar.



CR:237596
CR Number:   237596
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
13 Apr 2001 Duplicate
Description
PB Version and Build: PB 7.0 - all builds
PB 8.0 - all builds

When in dw painter and the taborder button is pressed, to allow tab order values to be changed, most menu options are greyed out but the save button is not (in PB 6.x this was also greyed out). However this save button does not save any changes made to the taborder values but it does prevent the 'save any changes' dialog from appearing if the dw painter is close immediately after this as the dw painter (and the user) now 'thinks' these changes have been saved.
This button should save changes or be greyed out while in 'taborder mode' (as it was in PB 6)
Workaround Description
 Leave 'taborder mode' then save in dw painter
Or close painter without saving and PB prompts you to save changes - also works



CR:237609
CR Number:   237609
Product Name:   PB Enterprise
Product Component:   DB OLE DB
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
24 Apr 2001 Fixed
Description
The display value for a smallint retrieved from MS SQL Server versions 7 and 2000 through the OLE DB driver becomes corrupted upon subsequent retrieves.



CR:237631
CR Number:   237631
Product Name:   PB Enterprise
Product Component:   Jaguar Integration
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
29 Jul 2004 Fixed
Description
A PowerBuilder cannot handle a null string eurn when a client calls GetMessage function

in a NVO deployed into Jaguar server



CR:237644
CR Number:   237644
Product Name:   PB Enterprise
Product Component:   DB OLE DB
Status:   Closed
OS:   Microsoft Windows NT
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
7.0.3 10073 19 Jul 2001 Fixed
Description
OLE DB not exposing DBHandle( ) with IDBCreateSession needed by MS DTC



CR:237647
CR Number:   237647
Product Name:   PB Enterprise
Product Component:   DB OLE DB
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
24 Apr 2001 Fixed
Description
PB 8 Beta 4 build 5029, 6008.
Using OLE DB Driver to connect to a SqlServer 7 or 2000 database when passing a string (that has comma's embedded ) as a parameter to the storedprocedure causes "Error 999 (rc -1) : is, is not a parameter for procedure dbo.sp_test_text"

The same Storedprocedure executed using the native MSS driver works fine.



CR:237655
CR Number:   237655
Product Name:   PB Enterprise
Product Component:   DB Profile
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
17 Sep 2001 Fixed
Description
The ODBC Trace file name disappears if you uncheck the 'Trace ODBC API Calls' check box in the DB Profile. This is incorrect behavior, according to PB documentation



CR:237657
CR Number:   237657
Product Name:   PB Enterprise
Product Component:   Script Painter
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
PB 8 Beta 4: Enhancement Request: Customer would like to be able to print from the script painter and have it print in same font as set in the script painter. Also, if it is in a colour printer should print the different coloured text. He wants the script to print WYSIWYG



CR:237702
CR Number:   237702
Product Name:   PB Enterprise
Product Component:   Project Wizards
Status:   Open
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
Description
PSE NOTES
PB Version and Build: PB 8 Beta 4 build 6008 (also PB 7.x)

Current behaviour forces a new project to be created for each EAS component created using the EAServer component wizard. This new feature request is to allow the user to create EAS components without needing to create a new project so that the project can be created later to include various existing components OR alternatively, allow user to select an existing project when creating a new EAS component.
Workaround Description
 Create the new component with its project
Delete the projects are not required (optional)
Open a project which will be used to deploy various components or create a new one
Add the existing component to it



CR:237723
CR Number:   237723
Product Name:   PB Enterprise
Product Component:   DW Expression
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
8.0 GA 7017 27 Jun 2001 Fixed
Description
If a dw expression for any band property of any dw band (detail, header, footer etc..) references a computed field then it is 'lost' when the dw painter is closed and reopened again.
The only 2 band properties which allow conditional expressions are color and pointer - both do not retain expressions supplied after closing the dw and reopening it. The expressions work fine in the dw painter preview pane (or for other expressions) but once the dw is closed and reopened the expression is lost ( looks like the dw parser is not understanding the expression when read from source and is discarding the expression).



CR:237731
CR Number:   237731
Product Name:   PB Enterprise
Product Component:   OLE - Active X - OCX
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
26 Nov 2001 Not a Bug
Description
OLE: call to MS XML Parser AppendChild method fails with a PowerBuilder runtime error on the second call to the method.



CR:237791
CR Number:   237791
Product Name:   PB Enterprise
Product Component:   Window - Runtime
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
7.0.3 10075 10 Jul 2001 Fixed
Description
mle goes to background (order of controls are changed) after setting propertie. For example if setting mle_1.VScrollbar = TRUE
Workaround:
use following script to brin the control to front.
mle_1.bringtotop = true
Workaround Description
 use
mle_1.bringtotop = true



CR:237873
CR Number:   237873
Product Name:   PB Enterprise
Product Component:   AutoScript
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
6016 17 Sep 2001 Fixed
Description
When you use the autoscript, the dropdownlist is not refreshed when you press the backspace key.



CR:237876
CR Number:   237876
Product Name:   PB Enterprise
Product Component:   DW Painter
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   6.5.1
Fixed Version Build Resolution Date Closure Code (If Appropriate)
31 Oct 2002 Presently Not Targeted For Any Future Release Of This Product
Description
When pressing the spacebar in a datawindow containing a dddw as the first column PB will gpf. PB 6.5.1 builds 12xx and higher only.



CR:237878
CR Number:   237878
Product Name:   PB Enterprise
Product Component:   Debugger
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   6.5.00
Fixed Version Build Resolution Date Closure Code (If Appropriate)
31 Oct 2002 Presently Not Targeted For Any Future Release Of This Product
Description
PowerBuilder 6, 7 crashes in the debugger when a debugbreak function is called in
an autoinstatiated shared userobject. The crash can occur when stopping the debug session or
when closing the debugger.



CR:237879
CR Number:   237879
Product Name:   PB Enterprise
Product Component:   PB GUI
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   7.0.3
Fixed Version Build Resolution Date Closure Code (If Appropriate)
09 May 2002 Fixed
Description
Opening objects from an application that has a big library search path over the network sometime causes freezing or hanging behavior in PB
This could be a dupe of cr 227025 which has a status of resolved, with resolution saying an architecture issue.
But essentially we are doing a lot of Read call to pbls that do are in the library search path and not linked to the object being opened.
If the pbls are over the network then one will notice that pb70.exe Queries all the folders and subfolders on the network drive that has the PB pbls located.



CR:237901
CR Number:   237901
Product Name:   PB Enterprise
Product Component:   Inheritance
Status:   Closed
OS:   MS Windows NT 4.0
Original Version:   8.0 Beta 4
Fixed Version Build Resolution Date Closure Code (If Appropriate)
25 Apr 2005 Presently Not Targeted For Any Future Release Of This Product
Description
Change in behavior from PB 6.5.1 to PB 7 and PB 8: When you change the name of a control in an ancestor window or menu (in PB 7 & 8), you must open and resave the descendant in order for that change to be reflected in the descendant. Documentation states that a regeneration of ancestor and descendant should take care of it. If a user has one ancestor and 100 descendants this will be a problem, as they will have to open and save every single descendant.
Review Status
 4/25/2005

This CR was reviewed and closed as part of the Quarterly CR Review process. It is "Not targeted for any future release".





--------------------------------------华丽的分割线-------------------------------------------------------------------------

Sybase SQL Anywhere数据库恢复工具ReadASADB:

之前就已经研发成功了能够从Sybase SQL Anywhere的DB文件中恢复数据的工具: ReadASADB。
此工具支持ASA v5.0, v6.0, v7.0, v8.0, v9.0, v10.0, v11.0, v12.0, v16.0, v17.0等版本。
能够从损坏的SQL Anywhere数据文件(.db)和UltraLite数据文件(.udb)上提取数据的非常规恢复工具。
恢复Sybase SQL Anywhere的工具在国内处于领先水平。

Sybase SQL Anywhere数据库恢复工具ReadASADB功能
能够从损坏的SQL Anywhere数据文件(.db)和UltraLite数据文件(.udb)上提取数据的非常规恢复工具
  1. 适用于所有的SQL Anywhere版本    包括:5.x,6.x,7.x,8.x,9.x,10.x,11.x,12.x,16.x,17.x
  2. 适用于所有的UltraLite版本
  3. 能够恢复出来表结构和数据
  4. 能够恢复自定义数据类型
  5. 能够恢复存储过程等对象的语法
  6. 能够导出到目标数据库
  7. 能够导出到SQL文件并生成导入脚本
  8. 支持多种字符集,包括:cp850、cp936、gb18030、utf8等
  9. 能够恢复未加密或者简单加密类型的数据
  10. 简单易用
  11. 限制:不支持AES加密的数据文件
请参考:研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具
            SQL Anywhere数据库非常规恢复工具ReadASADB使用介绍

Sybase SQL Anywhere数据库恢复工具ReadASADB适用场景

各种误操作:

  1. 误截断表(truncate table)
  2. 误删除表(drop table)
  3. 错误的where条件误删数据
  4. 误删除db或log文件
  5. 误删除表中的字段

Sybase SQL Anywhere数据库恢复工具ReadASADB的应用场景:

1.因为物理磁盘故障、操作系统、系统软件方面或者掉电等等原因导致的Sybase SQL Anywhere数据库无法打开的情况;
2.误操作,包括truncate table,drop table,不正确的where条件导致的误删除等;
Sybase SQL Anywhere无法打开时,比较常见的错误是:Assertion failed。
如:
1、Internal database error *** ERROR *** Assertion failed:201819 (8.0.1.2600) Checkpoint log: invalid bitmap page -- transaction rolled back
2、Internal database error *** ERROR *** Assertion failed:201819 (8.0.1.2600) Page number on page does not match page requested -- transaction rolled back
3、Internal database error *** ERROR *** Assertion failed:200502 (9.0.2.2451) Checksum failure on page 23 -- transaction rolled back
4、File is shorter than expected
5、Internal database error *** ERROR *** Assertion failed: 201116 Invalid free list index page found while processing checkpoint log -- transaction rolled back
6、*** ERROR *** Assertion failed: 51901 Page for requested record not a table page or record not present on page
7、*** ERROR *** Assertion failed: 201417 (7.0.4.3541) Invalid count or free space offset detected on a table page
8、Internal database error *** ERROR *** Assertion failed: 201425 (8.0.3.5594) Invalid count or free space offset detected on a free list page -- transaction rolled back.
9、Internal database error *** ERROR *** Assertion failed: 100702 (8.0.1.2600) Unable to modify indexes for a row referenced in rollback log -- transaction rolled back


-------------------------------------------------------------------------------------------

Sybase ASE数据库恢复工具READSYBDEVICE:

一个不依赖数据库管理系统、直接从Sybase数据库设备文件上提取数据的业内领先的恢复工具!
能够从损坏的Sybase ASE设备文件(.dat)上提取数据的非常规恢复工具。

Sybase ASE数据库恢复工具READSYBDEVICE的主要功能:

  1. 被勒索病毒加密数据文件及备份文件情况下的恢复;
  2. 系统崩溃只剩下数据文件的情况下的恢复,甚至数据库文件不存在而只有损坏的备份文件情况下的恢复;
  3. 因断电、硬盘坏道等造成数据库文件损坏情况下的恢复;
  4. delete数据恢复、误update数据恢复、误删除表(drop)恢复、误truncate表恢复 等;
  5. 各种Sybase内部系统表损坏、索引错误的修复;
  6. master数据库损坏而无法正常运行情况下的恢复;
  7. Sybase数据库被标记为可疑,不可用等情况的恢复;
  8. Sybase数据库中数据文件内部出现坏块情况下的恢复;
  9. Sybase数据库无数据文件但有日志文件的情况下的恢复;
  10. Sybase数据库只有数据文件无任何日志文件的情况下的恢复;
  11. Sybase数据文件被误删除情况下的碎片提取恢复;
  12. 磁盘阵列上的Sybase数据库被误格式化情况下的数据库恢复;
  13. 数据库sysobjects等系统表损坏无法正常应用情况下的恢复;
  14. Sybase数据库还原数据库出现失败情况下的恢复;
  15. Sybase数据库只剩下损坏的备份文件情况下的恢复。

Sybase ASE数据库恢复工具READSYBDEVICE支持的版本:

Sybase ASE 11.0.x,11.5.x,11.9.x,12.0.x,12.5.x,15.0.x,15.5.x,15.7.x,16.0.x


-------------------------------------------------------------------------------------------

SQL Server数据库恢复工具SQLRescue:

一个不依赖数据库管理系统、直接从SQL Server数据库文件上提取数据的业内领先的恢复工具!
能够从损坏的SQL Server数据库文件(.mdf)上提取数据的非常规恢复工具。

SQL Server数据库恢复工具SQLRescue的主要功能:

  1. 系统崩溃只剩下数据文件的情况下的恢复,即无日志文件或者日志文件损坏情况下的恢复;
  2. 断电导致数据库文件损坏情况下的恢复;
  3. 硬盘坏道造成数据库损坏情况下的恢复;
  4. 数据文件内部存在坏页情况下的恢复;
  5. 企业管理器误删除数据表记录,管理软件误删除数据表记录的恢复;
  6. 并闩锁错误、格式化、误删除后导致软件不能使用的情况;
  7. 无法读取并闩锁页sysindexes失败情况下的修复;
  8. 数据文件被误删除情况下的碎片提取恢复;
  9. 系统表损坏、索引错误、误删除数据库表、删除记录的数据找回;
  10. master数据库损坏而无法正常运行情况下的恢复;
  11. 数据文件无法附加情况下的数据恢复;
  12. 数据库被标记为可疑,质疑,不可用等情况的恢复;
  13. 数据库sysobjects等系统表损坏情况下的恢复;
  14. 数据被误(drop、delete、truncate)删除表数据的恢复,误update后的数据恢复等;
  15. 还原时报一致性错误,错误823等情况下的数据恢复,各种错误提示的数据库文件修复;
  16. 数据库被误格式化等情况下的数据库恢复;
  17. 日志收缩造成数据库损坏情况下的恢复;
  18. 仅剩损坏的备份文件情况下的恢复。

SQL Server数据库恢复工具SQLRescue技术特点:

只要SQL Server数据库的数据文件存在,我们就有办法帮您从数据文件中找回重要数据。
  1. 从数据文件中直接恢复数据
  2. 不能附加时直接恢复数据并生成新的数据库
  3. 系统表损坏的数据库修复
  4. 快速修复SQL 823错误、连接中断错误

SQL Server数据库恢复工具SQLRescue支持的版本:

Microsoft SQL Server 7.0, 2000, 2005, 2008, 2008R2, 2012, 2014, 2016, 2017,2019。
+-------------------------------------华丽的分割线-------------------------------------------------------------------------