Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
DonBakke
About
- Username
- DonBakke
- Joined
- Visits
- 3,057
- Last Active
- Roles
- Administrator
Comments
-
This was identified and resolved awhile ago. I think we updated the installer with the fix. Can you install from our product site and let me know? https://products.srpcs.com/srp-editor/
-
@vince - It might be easier for me to just explain what Control_On / TempFlag does at a low level and then you should be able to answer your own questions. Transaction processing depends upon a special MFS being installed to your table(s). This is …
-
@vince - I'm glad that helped. It's vindication of my practice to have sample code that demonstrates concepts that might not be well known or commonly used.
-
@vince - This wasn't covered in the training class. The transaction volume is not normally visible in the Database Manager. That is, OI does not add it to your Database for you since this is meant to be a "behind the scenes" feature. Not too dissim…
-
Ideas that come to mind: * If revdebug.dll in the folder? * Check the properties of revdebug.dll. Is the "Unblock" button there? * Make sure revdebug.dll isn't quarantined but AV or malware blockers.
-
I haven't had a chance to confirm myself, but does Delete_Index display any progress GUI?
-
Are you attempting to attach the tables using UNC or mapped drives? If the latter, that might be your problem. Services typically do not have the same access to resources as a normal user.
-
I see. I thought you were expecting it to be under the Help menu based on your wording, but I misunderstood. If you upgraded to 10.2.1 then the "Launch the SRP Editor" would have been removed because the main IDE would have been updated. You'll nee…
-
Just to add that when installing SRP Editor 3.4.1.2 into OI 10.2.1, the Launch SRP Editor shortcut does not appear at all - although the Help menu does remain intact. I'm not following you. What shortcut are you referring to?
-
I haven't confirmed this, but I would guess that the message is the same in both 32 and 64-bit versions of the SRP Editor since one was a port of the other and not every internal resource has been updated to use 64-bit phrasing.
-
Not in my wheelhouse. Perhaps others will chime in.
-
TL;DR Create_Index does not behave exactly like Table Bulder or DB Manager in creating indexes but the differences will likely not affect you. This is where I would use hooking to figure out what is different. Obviously the Database Manager UI us…
-
Yes. If you follow these instructions and adapt to your URLs it should work: URL Rewrite Rules
-
@Opto_Will - Thanks for the clarification. I agree that this is still a bit odd. I wonder if there is a mismatch between the dictionary field itself and %FIELDS%. Synonyms are identified if position 28 (DICT_MASTER_FLAG$) has the value of 0. Howeve…
-
Are you saying the original field name is literally "2"? While that does not appear to be an illegal field name (at least the Table Builder doesn't complain), I cannot ever recall seeing a field name that is just a number. Typically we see names lik…
-
Since OI uses semaphore locks, you can just place a lock on an arbitrary key (such as the name of your process) at the beginning of the process (or from the code that calls the process) and only proceed if you get the lock. When the process complete…
-
@Luann_Dias - No disadvantages based on your use case. The SearchIndex service is really a wrapper around the Btree.Extract routine, which is one of the fastest ways to search for indexed values. SearchIndex just does a bit of the leg work for you t…
-
Yes, that is UD 4.7.x. In this case, if the folder is relative to the OpenInsight folder, the UD will already manage this folder using the configuration in the root REVPARAM file. If the folder is elsewhere, copy the REVPARAM file into this folder a…
-
Are you using UD 4.x or UD 5.x?
-
Well, that would be what transaction files would look like. So maybe your system is respecting the folder. If that's the case then perhaps my notes above do not apply. However, using a shared folder on the database server would still be recommended.
-
1 and 100 are local folders, relative to the OI folder. Check to see if they exist. What kind of stuff do you see written to C:\TVCORYX.CC\OITRANSACT?
-
Now that we have that bit of communication barrier out of the way, I'm going to tell you something that will blow your mind: None of this matters. As it turns out, at least from our own testing and conversations with Revelation, OpenInsight does no…
-
Yes, you have the correct understanding. What confused me was the concern that "If you have multiple OIs writing stuff in there, could that not cause corruption?". Since these would be database tables, the whole point is for multiple OIs to write st…
-
What do you think is the purpose of the transact folder? I think you have the wrong impression.
-
I would think the Set_Env routine would do this for you. You have me curious. Why would you want each user to have their own transaction folder? Doesn't that defeat the purpose?
-
I'm not ignoring you but O4W is not a product we use so I don't really have an informed response.
-
In that case you could write a routine that calls the COPY_ROW subroutine. This would replace steps 3-4-5 with one command. You would just need to worry about the data selection, the display of a wait banner, and the dismissal of the wait banner.
-
If this was a one time task, or even if it is used occasionally, I would have suggested to just create a select list and use the copy_row command with the option to delete the source row. You can do this from TCL or the System Monitor. If you inte…
-
Is this just a one time maintenance task or is this something you intend to implement as a regularly used utility or perhaps even something that runs automatically?
-
@AusMarkB I also should have asked...what version of SRP Controls?