Browse all forums dedicated to the Rocket MultiValue product family.
Recently active
Hi all, Hopefully you will excuse the question. I should know the answer but........We have a backup vendor that is triggering errors on our linux d3 volume. Error is cannot index. Speaking with them they would like to know how the volume is formatted? If for no other reason than placing in an exception list so the error will not be triggered. The company is Rubrik just for information.I told them it was the blob and they didn't think is was funny :)Thanks for any helpCraig------------------------------Craig CurtisSystem ProgrammerSevier Valley School DistrictRichfield UT US------------------------------
Can anyone tell me a way to determine if a newly opened wIntegrate window is off of the viewable monitor screen? i.e. I command wIntegrate to open a new window but it is partially off of the screen, then I have to use the mouse to physically move it so the whole window is viewable. I have scanned both the 'winthost' and 'wintscr' manuals but have not been able to find a solution. I'm wondering if there is a solution, or perhaps additional documentation that could be helpful. I am using wIntegrate version 6.3.0.------------------------------Kevin HondMr.Self RegisteredKingsport TN US------------------------------
We use the WIN.LOOKUP subroutine often to provide pop-up boxes to allow for list selection by the user. There is one main limitation for which we have not found a work around and have been trying for many years.. We are using v6.4.0.When the list exceeds 9 choices (and some of ours have 50+), we need the routine to allow for a 2-digit user entry. Unfortunately, it will not, so to get to "85", a user must type "8" SEVEN times. This shortcoming almost always causes entry errors and/or unnecessary help-desk calls.Has anyone found a way to handle this requirement? A different subroutine? or is it just a limitation has has not ever been addressed?Appreciate any thoughts.------------------------------Nelson SchrothpresidentC3CompleteShop LLCHarrison OH US------------------------------
D3 Product Manager @Tim Rude sat down with @Robert Burke, recently reunited with Rocket via the Zumasys transaction, to update him on new developments with D3 and the product direction moving forward. If you are a D3 user you'll want to check it out! The product direction includes an change that promises to higher interoperability between operating systems, but questions still remain as to how to best architect the change to help clients navigate the migration. Tim poses that question around the 8:50 mark - let us know your opinion if you are are customer who will be impacted by this change. Also, feel free to ask any questions on this video below, or just tell us what think about the overall direction. Regards, Dave------------------------------David AndrewsHead of Customer AdvocacyRocket SoftwareSouth Salem NY US------------------------------
I am looking at getting started with creating custom GCI functions on UV 11.3.3 (RHEL7 installations).I know nothing about c programming or compiling so am looking for feedback on how to get started (specifically with GCI - I figure I can pick up the c stuff as I go).Has anyone worked through getting the example GCI functions built and integrated with UV?I have already learned that I needed to install the glibc-devel package in order for the compiler to be happy it has all the includes.Now I am stuck with the following:root@h1133# pwd/usr/uv/gcidirroot@h1133# make -f Make.gci gci_hellogcc -Iinclude -m64 -DU2_64_BUILD -fPIC -m64 -DU2_64_BUILD -DTHREADS -DFASTIO -DUSE_STDARG -DU_LINUX -DU2_LINUX -D_GNU_SOURCE -fPIC -Wimplicit-function-declaration -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNETwork=2 -DRAID -DUNIVERSEon -DU2SVNURL="/uvuddb-uv113/release/11.3.3@d15ee91-20210525" -lm -lcrypt -m64 gci_hello.c -o gci_hello/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o: I
Hello Everyone, Maybe you have heard there is an important security issue in log4j recently. Hackers could attack your machine by using the log4j security vulnerability. The Rocket MV BASIC extension has several minor releases to fix this risk because it also uses log4j for logging. But sometimes you may don't know the extension has an update, or you forgot to update it. So we would like to share a tips to update the extensions in your VS Code automatically. You can manually upgrade your extension. But VS Code also supports to update all installed extension automatically. You can enable this function follow below steps: 1. open extensions view 2. click the '...' button 3. Move to "Auto Update Extensions" item and select "All Extensions" Then ALL installed extension will be updated automatically when there are new versions. You can also only upgrade enabled extensions by selecting "Only Enabled Extensions". Note: sometimes you need restart VS Code to make the upgrade ta
Hi All,Can anyone provide me with some guidance on how I can change the visibility of the Resize Grip which appears in SB/XA XAML Screens/Forms?I have played with "Snoop" and have tested that changing the "Visibility" property of the ResizeGrip component to "Hidden" has the desired effect of disabling the ability for users to manually stretch and resize my forms.I have managed to achieve this on Dialogs using something like below.<Setter Property="sbc:SBForm.ShowResizeGrip" Value="False" />But can't manage to hide it on standard forms.Thanks in AdvanceAaron#XAML #SB/XA #STYLES #THEME
Hello Again fellow SBXA Developers/XAML Extraordinaires!Can someone please provide some guidance on how to make the buttons in an F3 Intuitive Lookup dialog larger?Also would be great to know how to alter the spacing between them.Regards Aaron#XAML #SB/XA #STYLES #THEME
Apache Log4j vulnerability (CVE-2021-44228) - Critical As the Apache Log4j vulnerability (CVE-2021-44228) was disclosed on Dec 09, 2021, your MV teams have been actively monitoring the issue and assessing its impact on the MV products. The following MV products have been impacted. Product impact and next steps are detailed below. MV BASIC for VS Code: MV BASIC for VS Code v1.3.0 and prior contains and uses a version of Log4j that can potentially be exploited by this vulnerability. We have therefore upgraded the Log4j version in MVVS 1.3.2 to v2.16.0 to resolve this issue and advise that you to upgrade by downloading the latest extension on the Visual Studio Code Marketplace. NOT IMPACTED: The following MV products DO NOT contain any version of Log4j, OR contain a version of Log4j that is not impacted by the vulnerability: MV Application Servers: UniVerse UniData D3 OpenQM mvBase jBASE Server Tools: U2 DB Tools U2 Common Clients U2 Toolkit for .NET Tools: MVX MVIS MVConnec
Just started working with the uopy python library. I'm able to connect successfully and run all the basic examples provided with no issues, but as soon as I started to extend it out to run some subroutines I've written, I started getting "Subroutine Error [30107] : The subroutine failed to complete successfully". Not entirely sure what would cause this as the same subroutine runs fine when ran outside of uopy. One thing I did notice is if I remove the READV statement within the subroutine, I do not receive this error. Below is the test subroutine I have been using.Any help greatly appreciated. SUBROUTINE (USER,JSON) $INCLUDE UNIVERSE.INCLUDE UDO.H READV USER.NAME FROM INIFILE,USER,3 ELSE NAME = '' STATUS = UDOCreate(UDO_OBJECT, testObj) STATUS = UDOSetProperty(testObj, "userName", USER.NAME) STATUS = UDOWrite(testObj, UDOFORMAT_JSON, TEST) STATUS = UDOFree(testObj) JSON = TEST RETURN
Subject says it all - I've done some searching, haven't found anything, and like most organizations - we're looking at all of our installed products to assess our vulnerability.We've got instances from 10.3.7 through 11.3.2 installed on various servers.------------------------------Allen EgertonDeveloperSS&C Technologies IncCT US------------------------------
Are there any Windows GUI applications that can edit Universe DB files on Windows or AIX?------------------------------Phillip PotterV.P. R&DData Management Associates Inc DMACincinnati OH US------------------------------
I am trying to install 11.3.4 to replace 12.1.1 . Wanted to wait for 12.2 but need to test the new performance tool and the exclusive use is causing us problems.But in the installation I get "Unable to execute the uvregen utility" . If I continue it does finish but I cannot authorize the product with the message :error in uvconfig at line 900: FIELD_UPDATE_THRESHOLDWhat is the best course of action at this point?------------------------------Randy NettlingPresidentData Management Associates Inc DMACincinnati OH US------------------------------
New MVVS version posted !!!Please upgrade to MVVS v1.3.2 to resolve critical zero-day vulnerability!!!On December 10th, one day after the release of MVVS 1.3.0, a zero-day vulnerability against Apache Log4j versions prior to 2.15 was announced. The fix for this vulnerability is to upgrade to Log4j v2.15.0. MV BASIC for VS Code v1.3.0 and prior contains and uses a version of Log4j that can potentially be exploited by this vulnerability. We initially upgraded the Log4j version in MVVS 1.3.1 to v2.15.0 to resolve this issue. It was determined the Log4j v2.1.5 did not fully resolve the vulnerability and a subsequent v2.16 was released. We therefore have upgraded MVVS 1.3.2 to v2.16.0 and advise that you upgrade. Please feel free to reach out to support or PM should you have any questions or concerns regarding the Apache Log4j zero-day vulnerability.------------------------------Christine RizzaMV Product ManagerRocket Softwarecrizza@rocketsoftware.com------------------------------
Today we announced general availability of a performance monitor tools every business running Rocket UniVerse needs. Rocket MultiValue Experiences: Performance, or MVX:P for short, is the only system monitoring tool providing users with deep insights within Rocket UniVerse. It's is a modern, easy-to-use web-based application with a dashboard consisting of three tiles: Events, Sessions and Locks. MVX:P monitors and escalates more than 20 UniVerse-specific events that could impact performance that are not accessible to the surface monitoring tools available in the market today, and it's free! That said, MVX:P works only with UniVerse 11.3.4, so reach out to us to learn more about upgrading if you are interested. Check out the MVX product page to learn more, as well as these FAQs. Be sure to share your questions, comments and discoveries here as you jump into the tool. ------------------------------Zain MasterSenior Product ManagerRocket Internal - All BrandsDenver CO US---------------
What's the procedure for Rocket with keeping up with maintenance on Zumasys products? We had Z maintenance on AccuTerm - as did many of our customers - and those will be coming due soon.
Creating RESTful end points with vanity URLs (a.k.a. URLs that have descriptive and easily remembered paths/names) in MVIS makes it easier for API users to understand the purpose of an API, and allows the developer to create a naming convention that helps with management of services. In these two videos @Girija Dhole and I show how to do it. Happy to answer your questions on this capability below. ------------------------------Anand MirasdarRocket Software------------------------------
MultiValue Performance Experience version 1.1.1 has been released on December 07 2021 for the below platforms/versions: AIX POWER 7.1, 7.2 CentOS 7, 8 RedHat Enterprise Linux Intel 7, 8 Windows Windows 10, 2016, 2019 This product is available to order immediately via your Rocket software provider or by logging into your RBC account at https://rbc.rocketsoftware.com or https://rbcint.rocketsoftware.com.Additional product information is available on the Product Availability Matrix at https://rbc.rocketsoftware.com/matrix.asp or https://rbcint.rocketsoftware.com/matrix.asp. For any questions on product availability, please contact u2askus@rocketsoftware.com.
Newbie here. My name is Glenn and I have primarily worked with standard relational databases. I have been tasked with extracting the table data from a UniVerse database into a set of CSV files. I wish I could explain why, but management just gave me this directive, no reason or other details. I know others in our IT group need to migrate a Windows Server 2003 installation to Win Server 2016 because the data from our StreetSmarts application - contained in the UniVerse DB - needs to still be available after the server migration. I understand a MVDB doesn't have tables like a relational database, but instead has "files" that contain the data. I am hoping some of you can give me guidance on how I can extract the file data into CSV files so I can consider this task completed and let management do with it what they will. Thank you so much for any help you can give me as I don't even understand how I can see the file data or what structure exists for
Hello!What are the system requirements to use VS Code? I do not think I can install it since we use Unidata on HPUX , see Restriction from the Rocket website. Restriction Currently, the extension can only be used to edit BASIC program files on the machine where the VS Code installed, it does not support editing BASIC program files on remote servers directly. -Peter G------------------------------Peter GonzalezprogrammerSelf RegisteredUniversity City MO US------------------------------
HiI'm migrating Universe to a new Windows Server. When I perform an UPDATE.ACCOUNT command (to update the account to the installed version of Universe) i'm getting an error 'Unable to write item RELLEVEL" - doing this as admin, and windows permissions has write priv. What have I missed?
I just found that if you have enqueuing enabled on the primary ( FHB-ON (A ) and you also are logging all files ( FHB-ALLFILES-ON ) before using FSIHOTBACKUP to set up the primary queue ( FSIDM,FHB,P ), once you create the queue, an item with a null item ID is written to the FHB,P file along with two other items with the IDs 2 and 3. The presence of the null-item-ID item exposes a bug in the dequeuing mechanism on the secondary which manifests itself as a variable unassigned error in the fhb_GetQueueIndexes subroutine on the secondary server. The subroutine keeps looping around to the same error and dequeuing never starts.Engineering is aware and will be making some changes to the code, but in the meantime if you run into this, simply DELETE FSIDM,FHB,P "" and restart the secondary servers. And you should probably NEVER start enqueuing before you set up the file to which the transactions are queued.------------------------------Brian S. CramPrincipal Technical Support EngineerRocket S
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.