The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
2answers
35 views

How to read binary file from OpenVMS?

I got .bin file from OpenVMS encoded. How can i open or read it with c# or in windows? Thanks already. http://rapidshare.com/files/43983533/06975.BIN http://rapidshare.com/files/146375685/06976.BIN ...
2
votes
2answers
130 views

Migrating RMS to RDB

We're approaching the migration of legacy OpenVMS RMS files into relational database (both MS SQL 2012 and Oracle 10g are available). I wonder if there are: Tools to retrieve schema of indexed files ...
0
votes
0answers
33 views

Sending signals from DCL command line on OpenVMS

I'm trying to send a signal via the command line on an OpenVMS server. Using Perl I have set up signal handlers between processes and Perl on VMS is able to send Posix signals. In addition, C++ ...
-3
votes
1answer
119 views

OpenVMS terminal emulator on Windows [closed]

I am using OpenVMS terminal on Win . It is awful. Whenever I use up arrow, it is frozen and I have to open a new one and start over. Are there some good terminal emulators (e.g. putty for Linux) ...
0
votes
1answer
61 views

Cannot delete a printer queue on OpenVMS

Im trying to delete a printer queue but I always receive the message: $> delete/que myprinter %DELETE-E-NOTDELETED, error deleting MYPRINTER -JBC-E-REFERENCED, existing references prevent deletion $> ...
0
votes
3answers
195 views

Strings, gets and do while

I'm doing an exercise in C but I have a problem when at the and I want to repeat the cicle (do while), infact if I type 1 the programme starts again by the top, but it doesn't stop at the gets(testo); ...
0
votes
1answer
76 views

Alphabetical order a 2d array

I'm doing an exercise in C with strings, I have to order some words taken by a text. #include <stdio.h> #include <string.h> main(){ int cch=0, cw=0, i, j, w=0, ord=0, f=0; ...
0
votes
1answer
30 views

Find the date/time a process was created in OpenVMS

I can't seem to find the date/time a process was created in OpenVMS V8.3-1H1. The sh proc/all PROCESS_NAME command does show a Connect time which at first I though it is the time since the process ...
1
vote
2answers
42 views

dcl executing program using foreign command

How would you go about doing this? I have a file which contains roughly 40 lines, each line are variables for an .exe file. I've setup a foreign command $ CC := "$something$something:file.exe" I ...
0
votes
2answers
41 views

DCL sort - different start positions

I have a DCL script that creates a .txt file that looks something like this something,somethingelse,00000004 somethingdifferent,somethingelse1,00000002 anotherline,line,00000015 I need to sort the ...
0
votes
2answers
89 views

trapping SIGABRT from perl on VMS

Given kill.pl: $SIG{INT} = sub { print "int\n" }; $SIG{TERM} = sub { print "term\n" }; $SIG{ABRT} = sub { print "abort\n" }; print "sleeping...\n"; sleep 60; And kill.com: $ perl kill.pl And ...
0
votes
1answer
40 views

Openvms C++ - how to pass values to the environment

I am trying to pass values from a C++ program on VMS. $DESCRIPTOR( lname, (char*) "A" ); $DESCRIPTOR( lvalue, (char *) "Hello World" ); lib$set_logical( &lname, &lvalue ); lib$set_symbol ...
0
votes
1answer
28 views

OTL - how can I control the type of numerical values from SELECT

In a C++ / Oracle OTL application I have SELECT MYINT FROM MYTABLE This is the basis for otl_stream selstream On this line I get an conversion exception on an obscure platform (works well on ...
1
vote
4answers
125 views

waiting on background subprocesses in DCL on VMS

I am looking for a way to launch several background processes to run in parallel with DCL. I would want to wait for them all to complete and know whether they all succeeded or at least one failed. ...
0
votes
1answer
123 views

Binary Search Excercise

I'm doing an exercise in C, but I don't know why as first result I have always -1 (that is impossible). I have -1 only after the swap to ordinate the array. #include <stdio.h> #include ...
1
vote
4answers
183 views

What are the relationship between LIS, OBJ and EXE files?

I am working with a different compiler CC. It doesn't work like GCC. When I was using GCC, I can do "gcc -o exe_filename source_filename" and the output would be a exe file. When I use CC, I need 2 ...
0
votes
0answers
103 views

error of transfering a .csv file from OpenVMS to Windows [closed]

I am trying to transfer a .csv file from OpenVMS to Windows. But, the files size (148MB) is too large to be done. xfer s mc_fi_details_quantile.csv File too large. %NONAME-F-NOMSG, Message ...
0
votes
1answer
130 views

Develop in Assembly on OpenVMS?

Someone can explain me how to develop in assembly on OpenVMS, I already develop in C on OpenVMS and I've just start with assembly in Windows and Linux. How can I compile, link and run an .asm program? ...
0
votes
3answers
112 views

Generate a random array in C

I'm developing in C using OpenVMS, I've done a code that put in a 1001 (0-1000) elements array, 1000 (0-999) random numbers between 0 and 50. Here is the code: #include <stdio.h> #include ...
0
votes
1answer
93 views

Developing with C++ on OpenVMS

I am looking at a C++ project on OpenVMS. How different is it from NIX development? Is it a bit like a peculiar UNIX version or LINUX distro? Any peculiarities when it comes to memory management or ...
0
votes
2answers
70 views

C++ development on OpenVMS and mainframe [closed]

What are particularities of developing C++ on OpenVMS and Mainframe? I thought OpenVMS were more POSIX than most UNIXes, and most stuff are available, but it seems not.
1
vote
2answers
134 views

how to run a simple c program in openvms?

How to compile and link the sample c program in openVMS ?Can any one please explain the process and how can debugging process is don in OpenVMS?
-2
votes
1answer
237 views

Creating an index file organization and relative file organization in OpenVMS

How can I change the file organization attribute in OpenVMS? I have a file kishore.txt. The following details are the full description of the file $ dir/full kishore.txt KISHORE.TXT;1 ...
0
votes
2answers
207 views

How to list history commands on VMS ?

How to list history commands on VMS ? On linx, we can use "history". I cannot find corresponding commands on VMS . Any help will be appreciated. Thanks
5
votes
1answer
109 views

OpenVMS timer precision, better than millisecond accuracy.

I'm wondering which function offers best precision/accuracy for timing on OpenVMS in C. We have an HP Integrity rx2660 server running OpenVMS V8.3-1H1. My search so far points to $GETTIM_PREC which ...
3
votes
1answer
104 views

How to write a VMS daemon using python?

There are plenty entries on the internet on how to create a daemon using python in unix but I couldn't find anything mentioning how to do this in OpenVMS. Does anybody know how to create daemons (or ...
2
votes
1answer
54 views

How to have Emacs create backup files with OpenVMS Files-11 style file names with version numbers?

This SO answer about .emacs file contains: ;; keep backup files neatly out of the way in .~/ (setq backup-directory-alist '(("." . ".~"))) which triggered an idea that it would be handy if Emacs ...
0
votes
1answer
68 views

is there any opensource .com file for the purpose of auto-complete in command line?

In Linux, we have tab to do autocomplete for either command autocomplete or filename autocomplete. I know there are some freeware for this purpose, but what I can search online are binary files, is ...
2
votes
1answer
258 views

Remotely modify OpenVMS file using vim and SFTP from a Linux system [closed]

I'm using CentOS 5.5 and I'm trying to remotely modify file of an OpenVMS server. I tried with scp but I got an error about an "unexpected newline". I tried to find the solution to this but I haven't ...
6
votes
2answers
308 views

Moving away from Itanium

We currently have a large business-critical application written in COBOL, running on OpenVMS (Integrity/Itanium). As the months pass, there is more and more speculation about the lifetime of the ...
0
votes
3answers
224 views

Convert Bash Script to OpenVMS Syntax

I need to convert my bash script to OpenVMS, does any one know of an automatic converter or could help me manually ? #!/bin/bash # # Convert input to .CNF inputfile=$1 rm outfile; for line in $(cat ...
0
votes
3answers
219 views

Is there a working distribution of sqlite available for OpenVMS?

I am looking for a working distribution of SQLite for OpenVMS. I tried building SQLite 3.7.9 from the amalgamation file, using patches I found in a mailing list, but it does not quite work. I am ...
3
votes
2answers
108 views

Building Boost on OpenVMs

I’m hoping to port an application to open vms using HP C++7.3, but at the minute just trying out a few examples to establish if it's a potential way forward but a bit stuck. Being completely new to ...
0
votes
2answers
248 views

Can VMS filenames combine logical names and subdirectories?

I wonder about an apparent limitation to the flexibility of using filenames and logical names (~ filename aliases in this context) on VMS. You can have names like [dir]name or [.subdir]name and you ...
1
vote
1answer
340 views

Is it possible to pass input to console applications via batch files in Windows?

On OpenVMS, it is possible to write DCL (DIGITAL Command Language) command scripts that interpret lines without the $ prompt as input to the preceding command. For example, let's assume that we have ...
0
votes
1answer
93 views

Java performance on OpenVMS

I have try to test Java performance on OpenVMS (Itanium, OS 8.3) So I create some sample class to test performance as below HEZ[AUN]$type Test.java import java.util.Date; public class Test { ...
1
vote
1answer
122 views

Oracle client support for VAX OpenVMS 7.3

Does Oracle support any kind of client and C/C++ pre compiler for VAX OpenVMS 7.3 to connect to a Oracle server? On oracle.com they only have clients for Alpha and Itanium. I am using a simh VAX. And ...
0
votes
1answer
134 views

How do I set up NET-SNMP with OpenVMS?

I'm having trouble getting started off with installing net-snmp. So far I've installed the binary for net-snmp version 5.6.1.1 on my Windows XP machine and I'm trying to install net-snmp on OpenVMS ...
1
vote
2answers
227 views

Code generator for CLI based on CLD file

Although programming using the CLI$ routines is not very hard, it would be nice if there were a code generator for the basic stuff based on the CLD file. Does anyone have something like that, or is ...
0
votes
1answer
154 views

Changing f$mode() in an 'OTHER' session in openvms

I want to loggin in an openvms system using SSH progamatically then issue remote commands on the server. Putty will let me do that because f$mode() is 'BATCH' but with any SSH library I have used, the ...
1
vote
4answers
239 views

Read file fast (stream_lf format)

Looking for a way to speed up reading and processing a large text file (basically csv; stream_lf). Should I bypass RMS? Solution may be asynchronous or synchronous. Current implementation is ...
0
votes
1answer
348 views

Hard time with scripting in OpenVMS

I am having a very hard time with scripting in OpenVMS I have a certain output in a file called test.txt .For example : [WWEWE@http-lx-as code]$ cat test.txt ** Configuration for file ...
4
votes
4answers
1k views

How does one safely static_cast between unsigned int and int?

I have an 8-character string representing a hexadecimal number and I need to convert it to an int. This conversion has to preserve the bit pattern for strings "80000000" and higher, i.e., those ...
1
vote
2answers
2k views

How can we eliminate junk value in field?

I have some csv record which are variable in length , for example: 0005464560,45667759,ZAMTR,!To ACC 12345678,DR,79.85 0006786565,34567899,ZAMTR,!To ACC 26575443,DR,1000 I need to seperate each of ...
0
votes
1answer
3k views

How can I convert an alphanumeric and use it for calculation?

I will read a sequential file which include some string such as "79.85", "1000", "212.34". I want to convert the alphanumeric into number in this format 00000.00 ? I will need to add up these ...
4
votes
1answer
475 views

Signal handling in C++

Argument of type void (*)(int) is incompatible with parameter of type __sighnd64_t Below is my simple code: #include <iostream> #include <string> #include <signal.h> #include ...
0
votes
1answer
140 views

Compiling for OpenVMS on Unix

Is it possible and if yes how, to compile for OpenVMS(i64) on unix host and just transfer the executable to OpenVMS server?
5
votes
1answer
237 views

Creating a thread dump on OpenVMS

How can I retrieve a thread dump from a running Java process on OpenVMS? The process is not JMX-enabled. I am looking for something similar to kill -QUIT on Unix or Ctrl+Break on Windows. EDIT: I ...
-1
votes
5answers
364 views

Recovering data from a VAX to an NTFS system [closed]

I've tried to find the answer on many different sites, but no luck as of yet. Our dilemma is: We have an old VAX system (I believe runs VMS) that we desperately need the data retrieved from. The ...
0
votes
1answer
3k views

Updating .class file in a jar throws exception

I'm trying to port a wikimedia plugin to run on OpenVMS and needed to alter a class. I'm trying to update the .class file in the jar using jar uf jar-file .class-file, however when I do this I get the ...

1 2