Yes they are , you say it in the next sentence ..
Both your database are called ARCHIVE .... the path does not count has a different physical name.
MaximMorin Solution is the right solution.
There is no default database broker port for a progress database... To network a progress database you need to add the -S parameter and you must specify the port you want the broker to run on (there is no default for it because if you don't specify -S it wont be networked ) . The servers that...
No the database size does not shrink if you delete data from it . It will free up the blocks so that when you add new data , it will not make the database size grow until it runs out of free blocks.
It explained in this book .. http://documentation.progress.com/output/OpenEdge102b/pdfs/dvxml/dvxml.pdf
There is an entire chapter on using the Sax-Reader.
If you can't write a program that adds up the 2 previous number in a sequence to get the next number you really need to reconsider if you want to work in computer programming ... Or you shouldn't be asking on a forum how to do your homework :P
Since i love helping even tho giving you this will...
He is not adding the same temp table 3 times. Each time he calls his procedure , he passes the pseq parameter and depending on that value he adds ttable1 , ttable2 and ttable3 ... It weird code but it should work.
IF pseq EQ 1 THEN DO:
w_addok = phdsinout1:ADD-BUFFER ( "ttable1" )...
Progress Explorer does not work in Windows Vista , Windows 7 and windows 2008 . They created a new interface called OpenEdge Explorer wich is web based but more flaky to use.
It does not come built in with version 10.1B but i think you can download it has a add-on. It comes with version 10.2 .
And here is from DYNAMIC TO STATIC.
DEF VAR mptr AS MEMPTR.
DEF TEMP-TABLE ttTest
FIELD fld1 AS CHAR
FIELD fld2 AS INT
INDEX ttTest IS PRIMARY fld1.
DEF VAR hTable AS HANDLE.
DEF VAR hBuffer AS HANDLE.
CREATE TEMP-TABLE hTable.
hTable:CREATE-LIKE(TEMP-TABLE ttTest:HANDLE)...
Here is a simpler way to do it (STATIC TO DYNAMIC) :
DEF VAR mptr AS MEMPTR.
DEF TEMP-TABLE ttTest
FIELD fld1 AS CHAR
FIELD fld2 AS INT
INDEX ttTest IS PRIMARY fld1.
DEF VAR hTable AS HANDLE.
CREATE TEMP-TABLE hTable.
hTable:CREATE-LIKE(TEMP-TABLE ttTest:HANDLE).
CREATE...
Enhanced Read-Only is only available if you use OE Replication Enterprise Edition. The target databases can be access in "Enhanced Read-Only" (if you have Enterprise replication and not the Standard replication) but it only apply to a Replication Target Database. There is no -RO parameter...
This must be one of my biggest annoyance with OpenEdge , one dark age limitation that should not exists in any programming language ... Being able to dynamically be able to use any fonts that system has available should be a no brainer ... but no , we have to define them in a stupid INI file...
OpenEdge isn't that great for deployments. Especially if you want to install a multi-user Database. I have done it for a large customer who wanted to have an installation package with multi user database.
You have 4 parts that you have to take care of .
1) Install OpenEdge.
2) Install...
It not too hard to do .
Create a Progress App that shows the content of the _user table so you can find connected users. Then you can use the connection ID from that table to run a OS-COMMAND that disconnect only that user. This program would need to be run on the Database server machine...
He wants his application to appear in the notification area next to the time when he closes (runs in the background) his application just like MSN does when you close it . Instead of closing msn leaves a little icon in the notification area of the task bar and double clicking on it brings it...
You will need to use the mod_rewrite of Apache to rewrite your URL in your Apache Server to replace the long webspeed URL with a simpler URL.
Step 1 : Uncomment the rewrite module in your Apache configuration file.
remove the # in front of
LoadModule rewrite_module modules/mod_rewrite.so...
.Net .dll cannot be called from Progress using the EXTERNAL procedure qualifier.
You can add .Net DLL if you have progress 10.2A but not with previous version.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.