Tagged Questions
UniData is an extended relational database and integrated development environment. It is part of the MultiValue Database family. It features its own query language called UniQuery and programming language called UniBasic.
4
votes
1answer
94 views
MD5 hashing of Sequential files and dynamic arrays in UniData
I am creating a sequential file which requires a digital signature (MD5 hash). While I am creating the sequential file I am also creating a dynamic array with the same data.
If I perform a MD5 hash ...
2
votes
1answer
93 views
UniFile ReadNamedFields
I'm currently using IBM's UniObjects and I trying to retrieve multiple fields from a UniFile at once to increase efficiency.
UniFile uFile = uSession.CreateUniFile("fileName");
uFile.RecordID = ...
2
votes
2answers
524 views
How to do a UniData Case Insensitive Search with Uniquery
Unfortunately I have to do some interaction with IBM's UniData database system. I am doing this from c# code with UniObjects for .net.
I am building an ASP.NET search page that has a single search ...
2
votes
4answers
669 views
Learning to query UniData
We have an IBM UniData server. I just installed UniObject .net. It looks like you just issue unidata queries through the .net classes.
Where can I learn the query language/syntax and to work with ...
2
votes
1answer
744 views
Where to get UniObjects for .NET?
I hate IBM's site. It is extremely hard to find anything on there let alone try to find it twice!
I'm looking for the UniObjects for .NET. I did find the below files and have installed them (can't ...
1
vote
0answers
55 views
Multiple threads accessing UniData from UniObjects.NET throws UNI RPC error
We've been using UniObjects.NET without issue until we started using it with BizTalk which is a multithreaded product. The issue is the error below. This error only happens on the 2nd thread (and ...
1
vote
2answers
73 views
UniData UniQuery - two WITH
Alright I have little to no knowledge of SQL language, and am wondering what are the possible reasons for the slowness of two WITH vs one WITH in unidata.
Database has around ~1 million rows.
Ie/
...
1
vote
2answers
86 views
UniQuery - How to find the largest length of a field in a file
I'm trying to figure out how to find the largest length of records for a field in a file on a Unix-based Unidata database in a Manage2000 (M2k) MRP system. I currently have the "Using Uniquery" and ...
1
vote
1answer
67 views
Is there a UniData SQL equivalent to the UniQuery SAMPLE keyword?
I'm using UniData 6. Is there a UniData SQL equivalent to the UniQuery SAMPLE keyword?
Using UniQuery, I've always been able to do:
SELECT CUST BY NAME SAMPLE 1
and it would give me the record ...
1
vote
1answer
65 views
How do you change the UniObjects.NET mode from using … to using [ and ]?
How do you programmatically change the UniObjects.NET mode from using ... to using [ and ] when using the query command?
1
vote
3answers
346 views
Why do I get an ArrayIndexOutOfBoundsException in my JDBC connection?
I am new to Java and I am attempting to use JDBC to connect to an UniVerse database. I'm using Sun Java 6 JDK to using NetBeans to build the project. My simple test below builds however it gives the ...
1
vote
2answers
176 views
Data from UniData to SQL Server 2005/above through SSIS
We are doing a feasibility on what we're going to propose as a solution to a client who wants to migrate to a .NET based solution. Part of the data resides in UniData. What is required can be achieve ...
1
vote
1answer
265 views
How To Insert Data into UniData using UniObjects for .NET
I am working on inserting data into our UniData server from .net.
I have successfully updated an existing record using UniQuery by using the Modify statement. And according to the documentation, I ...
1
vote
3answers
150 views
Freeware for browsing Multivalue databases/Unidata
I'm looking for some free software to let me browse through the files/records in a Unidata server.
I found a program several months ago, but have no idea what it was called or where I found it.
1
vote
3answers
295 views
ASP.NET handle external server sessions - clean-up
Are we "doing it wrong"?
A colleague and I are messing around with an ASP.NET page to act as a "portal" to view the results from a diagnostic program on a UniData server. Although we do the odd-job ...
1
vote
1answer
88 views
UniTransaction throwing NullReferenceException
I'm trying to begin a transaction however on calling the .Begin() method throws a NullReferenceException and the stacktrace shows that it is coming from ...
1
vote
2answers
452 views
How to secure UniData session using UniObjects for .net
How do you secure a UniData session using UniObjects for .net?
The documentation is severely lacking. The UniObjects for Java documentation has a whole chapter on SSL.
EDIT
The UniObjects .net ...
1
vote
3answers
162 views
Sanitize Input for UniData
Can anyone provide a function to sanitize input for a UniData query? Or provide a list of things to remove?
1
vote
3answers
663 views
UniCommand differences for UniData
I'm new to the world of UniObjects as I've been in .NET land since it debuted. After building a simple app to return the select list of a UniCommand statement I noticed that there are some major ...
1
vote
3answers
727 views
UniData Data Access Products for .NET
I am doing some research about how to access data in a UniData database from .NET code.
From what I have found, I can use UniObjects for .NET and U2.NET. I have also found this information, which I ...
0
votes
3answers
132 views
UniVerse database | catalog command line parsing error
I am new to Universe-database trying to publish my SUBROUTINE compiled at universe-database version (11.1 and 10.1.5) successfully at windows and Linux.
Publishing SUBROUTINE command
CATALOG ...
0
votes
2answers
130 views
How do associations, @NS and @NV work in UniData Dictionaries?
Does anyone have a quick example of how Associations, @NS and @NV work in UniData?
I’m trying to work out associations in dictionary items but cannot get them to do anything.
For example, in a ...
0
votes
1answer
113 views
UniData EXECUTE's 'RETURNING' clause. List of error numbers?
When using the EXECUTE statement combined with the RETURNING clause, UniData returns any error codes encountered along with related data. Does anyone know a definitive list of these error codes?
...
0
votes
2answers
353 views
U2 Basic Developer Toolkit
Does anyone here run the Basic Developer Toolkit with UniData 7.1?
Even though the IDE was released with UniData 7.2, I was given the impression that it works fine with 7.1. However, when opening up ...
0
votes
1answer
269 views
Parsing command output in .NET
I want to connect up to a database server in my .NET app and execute a database command that produces a series of database statistics. The problem is that it doesn't return the stats in a structured ...