I'm working on a .Net WinForms appliation that is connecting to a legacy RDB database...
Some of the fields for dates are stored as integers (imagine 2010-01-04 was the integer 20100104)
In the .Net world, I'd much rather work with datetime objects…
I have been asked for a SQL statement to retrieve an arbitrary number of rows, randomly selected, from a data table in a database hosted on Oracle RDB on VMS.
In MS SQL, it would simply be:
SELECT TOP 5 *
FROM MyTable
ORDER BY NEWID()
But I…
I need to get a 64-bit ODBC driver for a Windows 2008 r2 server to connect to an RDB database (v7.2). I downloaded the Oracle ODBC Driver for RDB 3.3.2.0 but I can't get it to connect.
Has anyone used this? Should I be able to connect using…
I have been asked to translate an automation code from VisualBasic into java 8.
This is the old code:
connectionString = "Provider=MSDASQL;" & _
"FileDSN=" & dsn & ";" & _
"DATABASE=Attach 'filename…
I am using rdbthin on openvms system. Currently I am using jar in my application with version 7.3.1.0. I am asked to upgrade it to version 7.4.3.1. I am not able find it anywhere including Maven Central repository and Oracle archive. Can someone…
I have inherited a legacy OpenVMS system with an Oracle RDB database. Recently due to the backup size becoming stupidly large we have archived some of the older data out of the production database. Now we need to shrink the actual database files…
I am using Oracle Sql developer to access my Oracle RDB database. I have installed Oracle RDB extension for Sql developer.
I see there everything in object browser - tables, views, triggers, functions, procedures.
The problem is When i want to see…
I'm trying to connect to an Oracle RDB database using LSXLC (ODBC Connector).
But when it comes to stored procedures I'm having a hard time getting it to work.
The code below always results in "Error: Parameter name not supplied: fnl_date, Connector…
I have a legacy Alpha server with a RDB database. This db is replicated in a MySQL db with many bad php scripts that drops all the tables and takes everything from the Alpha.
This works very slow and is becoming unmaintainable. Is there a better way…
I'm trying to export data from a table in MS SQL Server 2008 R2 to a RDB Database.
But I'm having problems to export Hebrew strings to RDB because my SQL Server is Unicode and my RDB is Non-unicode.
Here are the details:
I'm using Oracle RDB Data…
Part of our company's data is stored in Oracle Rdb database system running on OpenVMS. Processes running on our VMs connect to this database using ODBC driver.
We're now moving most of our backend to .NET microservices deployed on Kubernetes cluster…
I want to execute one dynamic update query in oracle rdb through stored procedure.
For example:
Set :updateString='Update table set colum1, column2':
I want to execute :updateString in procedure only.
I have tried below cmds
Exec…
i use openquery to save values from sql server to RDB through ORACLE RDB DRIVER ,ODBC
insert into OPENQUERY([RDB_ODBC_ACCOUNTING],
'select * from test')
(f1) values( 0.001)
the value saved in rdb= 100
any suggest?
I am trying to query an old Oracle RDB database using something like Sys.Date()-1 as that works in R, but I have not been able to find the right syntax.
The following works but I want to run it on a regular schedule so a fixed time frame will not…
I had a problem this week (which thankfully I've solved in a much better way);
I needed to keep a couple of fields in a database constant.
So, I knocked up a script to place a Trigger on the table, that would set the value back to a preset number…