It's taking more than 15 minutes to search for Library entry.can anybody suggest how i can remove slowness of the application?
How to remove slowness of powerbuilder 12.6 application?
127 Views Asked by Kishan At
2
There are 2 best solutions below
Related Questions in WINDOWS-SERVER-2008
- How to stop windows server from stopping keyboard input when I disconnect?
- Add Attributes and objectClasses to OpenLDAP server over LDAP using .ldif file
- How can i change my fileserver, without changing the files path?
- service accounts in windows server 2016
- time not synching properly in windows server environment
- Authenticating external users on SQL Server Reporting Service
- .exe not working on Windows Server 2008 R2 Enterprise
- Different respond time from the server for the same application
- NodeJS app does not authenticate in Windows Server 2008
- How to fix Event View Error : It has taken too long to refresh the W3SVC counters, the stale counters are being used instead
- How to migrate IIS 7 settings to another server with IIS 10
- mysql connection lost in second successive query
- TLS1.2 error while connecting to a webservice on WIN2008 from PCF hosted dotnetcore application
- Client can't connect to a started server - "A connection attempt failed because the connected party did not respond appropriately beyond a certain
- upgrade a module using windows powershell with odoo 14
Related Questions in POWERBUILDER
- how to prevent a messagebox from displaying when i don't need it in some cases in powerbuilder
- Duplicated primary key error even though it doesn't exist in Powerbuilder 19
- How do I validate a strong login password in Power Builder?
- Powerbuilder messagebox text
- Powerbuilder Response window hangs then App closes - Any ideas?
- Launch FTP url in Edge-IE mode from powerbuilder
- how to get log from attendance machine in powerbuilder?
- Migrating a Complex PowerBuilder Application to .NET Core
- Power builder 2022 and Blueprism Active Accessibility Compatibility Issue
- powerbuilder 2022 graphmode SetSeriesStyle doesn't work
- Row changed between retrieve and update. Powerbuilder Error
- Powerbuilder randomly checking and unchecking Extend Ancestor Script
- PowerBuilder 2019 R3 - Is it the filter method which caused the application to crash?
- Powerbuilder preprocessor directive and DEBUG not working
- MultisubnetFailover as Connection string in powerbuilder
Related Questions in POWERBUILDER-BUILD-DEPLOY
- how use timer event in powerbuilder for changing multiple data windows
- How to access window variable in different .pbl with non-visual object in Powerbuilder
- How to create a setup of an Windows application using PowerBuilder
- PowerBuilder 12.NET automated builds using Nant
- Powerbuilder ORCA API Deploy
- Datawindows are not displaying in Powerbuilder exe
- Creating MSI package with powerbuilder12.5
- How to create a flag based on two time based measures?
- Appeon PowerBuilder2017 R2 Configuration
- Values not coming in Dropdown in PowerBuilder 12.5.2
- Is there a way to connect to an ASA database with Powerbuilder without deploying the ODBC or OLEDB drivers?
- PowerBuilder 12 Client runtime
- Unable to open this project because the add-on software that was used to create it could not be found
- How to deploy PowerBuilder 10.5 projects?
- How Make the Graph Style Data Source in PowerBuilder
Related Questions in POWERBUILDER.NET
- How to remove slowness of powerbuilder 12.6 application?
- How to open file without knowing extension in powerbuilder 12.6
- How to create PDF document dynamically in PowerBuilder?
- Appeon PowerBuilder2017 R2 Configuration
- Error running powerbuilder .net assembly in IIS wit ASP.NET MVC app
- Powerbuilder : How to Get the RowNumber of specific data on datawindow
- Editmask Powerbuilder 12.6 Build 4121
- Transaction not connected when the app is called from a website
- How to access window variable in different .pbl with non-visual object in Powerbuilder
- How to display loading dialog when a button clicked
- Error trying to run PowerBuilder.Net 12.5
- PowerBuilder 12.5 error while starting "the application has failed to start because its side-by-side configuration is incorrect."
- Button Clicked Event.. PowerBuilder 11.5
- DBHandle function always fails in PB12.net
- PowerBuilder window close event
Related Questions in POWERBUILDER-2017
- How do I validate a strong login password in Power Builder?
- Getting page() of the last row in power builder 12.5
- How to remove slowness of powerbuilder 12.6 application?
- Why I got the parseerror error when creating an event
- How to call stored procedure postgresql in SAP Powerbuilder (12.5)?
- which is faster - a datastore or structure in Powerbuilder?
- Why Powerbuilder rebuild source 3 times in deploy?
- PB App works only old SQL Server but not on the new. CONFUSED
- Can PowerBuilder 2017 be set to display line numbers?
- How to Azure DevOps CI/CD Pipeline for PowerBuilder 2017 R3 project, is it even possible?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Big PBLs mean slow searches. Segregate your objects. Many people separate by object type. If you are in a hurry then this will work in a pinch. I work with huge applications. I organize PBLs by application function. This can also improve your compile time.
Back up your PBLs then optimize them. In the library painter (shift-F10) right click on the PBL and choose Optimize.
Our application has libraries that never change like the PowerBuilder Foundation Class PBLs. You can build runtime libraries (PBD) for them, then in your library list, change .PBL to .PBD. If you need to change an object in one of your "static" libraries, just change .PBD back to .PBL in your library list.
I export my objects to a folder and use my favorite text search tool. Windows search will also work on exported objects. I can search 7200 objects in less than 15 seconds.