Browse all forums dedicated to the Rocket MultiValue product family.
Recently active
Hi, We recently encountered a data file corruption on key files. This was causing our app to fail. Does anyone in the forum have knowledge of any tools that will send email alerts once a new entry is logged into the \\U2\\unidata\\bin\\udt.errlog. Thanks in advance for recommendations. ------------------------------[Darren] [Johnson] [Australia][Snr Dev Engineer]------------------------------
SB/XA 6.6.1 is now available and includes a lot of smaller enhancements that add up to big improvements, especially if you have an IT group that requires software to work with or include current releases of other technology. For example, SB/XA 6.6.1 includes extensive upgrades to the Xceed DataGrid and the Xceed Toolkit, as well as upgrades to the .NET Framework. These upgrades empower SB/XA to work seamlessly with the latest version of the tools you rely on. Xceed DataGrid v7.2 (from v5.3) Xceed Toolkit v4.8 (from v4.5.1) Both upgrades provide you with a decade or more of incremental performance and stability improvements. And SB/XA 6.6.1 is using versions of the Xceed DataGrid and Xceed Toolkit that are covered by Xceed support. We've upgraded the .NET Framework to v4.8 (from 4.5). This highly compatible upgrade includes improvements made to the Framework over the last decade. Finally, SB/XA 6.6.1 includes a roll up of all the hot fixes we've made since SB/X
Hy i have some data ( zipcode database) that i need to transfer from QM to D3i created the tapebut i'm not able to read in D3any sugestions ?------------------------------Alberto LealSystem AnalystMillano Distribuidora de Auto Pecas LtdaVarzea Grande MT BR------------------------------
Could someone explain why these messages appear and the shell window closes when I use Ctrl-C and then option D while running a Unibasic program? ------------------------------Mark MartinNARocket Forum Shared Account------------------------------
We upgraded our development server to Universe 11.3.4 and one of my programmers wants to work with Basic Profiling, in particular the bpf program. Where do we find it? I had understood that it was available on this version, but it's not in $UVHOME\\bin.------------------------------Phillip PotterV.P. R&DData Management Associates Inc DMACincinnati OH US------------------------------
We use @USER0 for an application-level constant. We set it in the LOGIN paragraph & it should remain constant. I've seen it sometimes - but not always - get set to 0 after/while? I've used/exited(?)/re-entered(?) RAID. I haven't pinned down what triggers it. Ironically, the reassuring thing is that RAID is disgustingly buggy. I've had problems in RAID that don't happen when real users run things for real. So it's probably ok in production. Probably. Anyone else seen something like this?------------------------------Chuck StevensonDBA / SW DeveloperPomeroyUS------------------------------
The Rocket MV team is pleased to announce the release of Rocket UniData 8.3.2 and Rocket MultiValue Performance Experience (MVX: Performance) 1.10 on April 25th, 2024. UniData 8.3.2 is the first UniData release certified with the Rocket MultiValue Performance Experience (MVX: Performance) 1.10, which is available for our customers on maintenance. MVX: Performance monitors the performance of your UniData server and provides DBAs or developers with a better way to track down issues. It determines the root cause of issues, including the server, the operating system, the hardware, or a combination. DBAs can easily receive alerts when over 40 performance monitoring events occur, so constant monitoring is not required. In addition, UniData 8.3.2 and MVX: Performance 1.10 provide you with an enhanced replication experience, bolstering High Availability and Disaster Recovery (HA/DR) capabilities. UniData 8.3.2 extends the security features introduced in UniData 8.3.1, which included: Enhance
We have encrypted a number of files. We can grant access to those encrypted files by using the GRANT.KEY command - but this only seems to work for USERS - if we specify a GROUP, then users that belong to that group cannot access the file. The documentation isn't clear on what type of GROUP is being specified - whether this is a Windows group, or a QM group (as defined in ADMIN.USER). We have tried both types of group and still get the same result. Has anyone else used this feature, and have you been able to define group access for an encrypted file? Thanks, Brian------------------------------Brian SpeirsSenior Analyst - Information SystemsRush Flat LtdWellington NZ------------------------------
I can't get MVSP on my Linux D3/10.2 server to work with SSL. I have a server.pem file in the /usr/lib/pick directory and MVSP seems to start ok when I instruct it to do so with ssl. But if I try to use openssl to connect to it, it acts like there is no certificate: # openssl s_client -connect localhost:9000CONNECTED(00000003)140144259938192:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:s23_clnt.c:794:---no peer certificate available---No client certificate CA names sent---SSL handshake has read 7 bytes and written 289 bytes---New, (NONE), Cipher is (NONE)Secure Renegotiation IS NOT supportedCompression: NONEExpansion: NONENo ALPN negotiatedSSL-Session: Protocol : TLSv1.2 Cipher : 0000 Session-ID: Session-ID-ctx: Master-Key: Key-Arg : None Krb5 Principal: None PSK identity: None PSK identity hint: None Start Time: 1723061738 Timeout : 300 (sec) Verify return code: 0 (ok) and if I try it with the C# library, I get an
I wondering what others do for pessimistic locking strategies. D3's normal READU will lock a record for that PIB, and that execute level, which is good, and it is the behavior all D3 Basic programs probably use. My character based apps allow a user to "push" a level, so if you were in a customer maintenance screen, for example, the customer record ABCD would be locked, and if you pushed a level in that screen and used a menu selection to open a new customer maintenance screen and tried to edit ABCD, it would locked via the normal READU behavior. This would work the same if some other user on another PIB had ABCD locked. With a Java Swing app using MVSP, because it's a GUI, I can have multiple windows opened at the same time, so I could have 2 (or 200) customer maintenance screens open and clearly don't want to edit the same record on more than one screen. If I used one D3 connection per open window, I'd pretty soon run out of user licences, so I'm only using one D3 connection f
Ran into a problem on an Azure RHEL 9 instance where D3_setup could not execute anything out of the /tmp directory resulting in a failed install (/usr/bin/d3 missing, etc.). If you run into this, do the following as root: mount -o remount,suid,exec /tmp You should also alter the /etc/fstab to make this permanent after a Linux reboot. Find this:/dev/mapper/rootvg-tmplv /tmp xfs defaults,rw,nosuid,noexec,nodev,relatime 0 0 change this part:nosuid,noexec to this:suid resulting in this:/dev/mapper/rootvg-tmplv /tmp xfs defaults,rw,suid,nodev,relatime 0 0 While not related to D3 installation, it might be a good idea to make the same changes for the /home directory so that you can execute out of the /home directory as well. To do that, change this line in /etc/fstab as well: Before:/dev/mapper/rootvg-homelv /home xfs defaults,rw,nosuid,noexec,nodev,relatime 0 0After:/dev/mapper/rootvg-homelv /home xfs defaults,rw,suid,nodev,relatime 0 0 The mount would look like this:moun
A quick question from an mvBase user. Is there any way to get past the page width limitation of 132 characters as imposed by mvTerm? Is there an alternative terminal emulator that works with mvBase that could be used that does not have this limitation? Thanks! ------------------------------Edward SmithIT Services & Data Manager------------------------------
Currently, running 34 jobs in scheduler. Recently, the scheduler stopped running on 7/21/2024 and started backup on its own on 7/31/2024. Any idea why this would happen? Are there any updates to address this? Thanks in Advance!------------------------------Val YanezSoftware EngineerSouthwest Traders, Inc.------------------------------
Hi all, Is it possible in AccuTerm to call another project from a command button in a different project. I have developed a Customer Maintenance Project with 5 screens and a Customer Enquiry Project with 7 screens. But my customer has now asked to be able to Call the Maintenance Project while in the middle of an Enquiry when they have noticed a problem that need updating, i.e. wrong phone number. can this be done or do I need to redevelop my whole maintenance again inside the Enquiry. I have tried several things but nothing works as I had hopped Can ANY ONE help by pointing the way please haha------------------------------Chris BaxterMDCB SoftIPSWICH GB------------------------------
I am indexing a 21,000,000 record file on the invoice date. It is a single value field, and when I build the index it works correctly based on the records in the file at the time of the build. After that, new records or changed records are NOT added to the index. Is there a setting related to indexing that must be set to auto update the index? I have read all the UniData documentation on indexing that I can find. I have been using indexes in other versions of Pick for decades and this is the first time I have hit this problem.------------------------------Bob LislePresidentInformation Technology SystemsDallas TX US------------------------------
We have a multi-valued field that is being exploded for a sort. The dictionary item calls a program to convert the value. When we were on D3, this worked correctly. When we moved to Jbase, the sort failed. It seems to only sort on the first multi-value of each record selected. The program call was originally in <8> of the dict item. Another developer moved it to <7> after the issue was discovered. That worked fine for a while as the order of the original format sorted very close to the sort of the updated format. However, additional changes have been made that now make it obviously incorrect. <8> is the proper location for this call. The subroutine being called does use a few ACCESS references. At first I thought it might be something there, but it does do the conversion correctly. So the outputted data is correct with its format, but the sort result is wrong. Stumped.------------------------------Chris RazzanoSenior PICK programmerHouston's Inc-----------------------
I noticed that when I executed two select statements in a basic program, the 2nd one does NOT utilize the results from the first one: CMD1='SELECT FILE WITH ATTR1 EQ "Y"'' EXECUTE CMD1 CMD2-'SORT FILE F1 F2 F3 F4' EXECUTE CMD2 But, if I combine them it works: MULTI.CMD=CMD1:@AM:CMD2 EXECUTE MULTI.CMD Problem: is there a way to keep the 2nd command from running if the CMD1 finds 0 records? ------------------------------Nelson SchrothpresidentC3CompleteShop LLCHarrison OH US------------------------------
Hi Guys, According to the manual the D3 -d command -d data.arg Stacks data for the process once it is activated. The data argument specified is any string that contains displayable characters and commands prefixed by a backslash. The D3 implementation is Linux (Redhat) 10.3x I run this code in Linux and I can see the entries in the TCL stacker: Please just ignore the commented out lines. RESCMD = "!d3 -500 -d -' \\r\\r\\r\\rdm\\rdm\\rxxxxxx\\r" RESCMD = RESCMD:"\\rt-det 5 (uz\\rt-select 5\\rt-rew\\rt-rew\\r" * RESCMD = RESCMD:"\\rlistfiles \\r" RESCMD = RESCMD:"\\r\\r\\rt-det\\r\\rsleep 1\\r\\rexit\\r\\r'" EXECUTE RESCMD * * DELCMD = "!d3 -500 -d -' \\r\\r\\r\\rdm\\rdm\\rdxxxxxx\\r" * DELCMD = DELCMD:"\\r\\r\\rt-det\\r\\rtime\\r\\rexit\\r\\r'" * execute delcmd * * execute delcmd * * RESCMD = "!d3 -500 -d -' \\r\\r\\r\\rdm\\rdm\\rdxxxxxx\\r" * RESCMD = RESCMD:"\\rt-det 5 (uz\\rt-select 5\\rt-rew\\rt-rew\\r" * RESCMD
hello, So, Universe >= r12 use the same lock system like Udt, I'm looking to deeply understand/tune it. For admin & troubleshooting, there is a tool uvglm_tool / glm_tool and uvulc_tool / ulc_tool, but they are not documented or I do not found any docs about it nor in Unidata docs. Is there anyone who have details about it ? How to read the info, use it ? Perhaps docs/pdf/ppt/whitepaper/KB/... from U2University conferences in the past ? I thank you by advance. ------------------------------Manu Fernandes------------------------------
Are there any examples written in Flask or other tool that uses REST tocommunicate with Universe using MVIS to do data entry? A customerdemographics app for example. What is a good design pattern to support thesession and record locking?Thanks
Our ERP system utilizes UniVerse and I'd like to train some our support team members to become UniVerse Administrators. Is there a Rocket program or Contact I can reach out to for assistance? ------------------------------Matthew WestDirector of Software DevelopmentIntegrated Supply Network IncLakeland FL US------------------------------
Every time my [Windows 11 pro] PC is rebooted the "Unidata Database Service 8.2" and the "Unidata Telnet Service 8.2" are both Disabled and have to be re-enabled and then re-started via the Services window. It's funny but the "Uni RPC Service" is not affected. Probably unrelated, or perhaps a clue; When rebooting [the PC], all of my stored logon IDs are gone and have to be re-entered.------------------------------Kevin HondMr.Self RegisteredKingsport TN US------------------------------
We have a file that is used to find customers via a name & address formatted "matchcode". This matchcode file has an index for customer number, as it has 38M entries. For example: MATCHCODE: 4537100110WSTLM00000BSHT0001 599386130002 58926904 Often, there are more than one customer number (attributed) associated with a matchcode as shown in this example. It seems that only <1> is indexed and not the others (. Is this a function of how UniVerse indexes, or the dictionary value used or is it a function of how the index was created? >LIST-INDEX MATCHCODE ALL Alternate Key Index Summary for file MATCHCODE File........... MATCHCODE Indices........ 1 (0 A-type, 0 C-type, 1 D-type, 0 I-type, 0 SQL, 0 S-type) Index Updates.. Enabled, No updates pending Index name Type Build Nulls In DICT S/M Just Unique Field num/I-type CUST.NUM D Not Reqd Yes Yes S L N 1 DICT MATCHCODE 09:50:32am 10 Jul 2024 Pag
Hello, I am trying to integrate a webhook from a third party company in Universe 11.3 on IBM AIX. The third party company asked for a URL to send their messages and I thought I would be able to build this through RESTful Web Services developer and a Unibasic subroutine. I setup an input parameter and hoped it would contain the return data, but that did not work and the parameter was not being populated. Is the RESTful Web Services the best tool for this? If so, how can I parse the return message (below) in my Unibasic subroutine, so I can update my database? If not, any tools/ideas you can recommend? Thanks, Larry ------------------------------Lawrence RizzoConsultantLJR Technology Consulting LLCEast Amherst NY US------------------------------
Older D3 system running 10.2 Linux. After I loaded the latest patch, they started having System Halts, so I put them back to the original version of 10.2 However, when I recompiled all their BASIC programs, they came up with "0 frames used" for each one. What does this mean and how do I fix it. Their system is up and running, so I'm confused. Thanks. Fixed. Never mind. ------------------------------Richard GinsburgPresidentGinsburg ConsultingLeesburg VA US------------------------------
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.