Questions tagged [hp-nonstop]

Proprietary HP fault-tolerant server with associated operating system (Guardian) and tools. Originally manufactured by Tandem Computers and still often called "Tandems", they maintain a high degree of backward-compatibility and also provide an environment for the development and deployment of modern software. Use this tag if your question relates to the NonStop on either the Guardian or OSS personalities.

58 questions
4
votes
1 answer

How does the HP (Tandem) Non stop compare with Linux clusters?

HP NonStop systems (previously known as "Tandem") are known for their high availability and reliability, and higher price. How do Linux or Unix based clusters compare with them, in these respects and others?
Abhishek Yadav
  • 4,931
  • 4
  • 20
  • 10
3
votes
1 answer

C on HP Nonstop: How to obtain filesize of large file > 2GB?

I'm working on a C application which is running on HP-Nonstop and it needs to get the size of files on disk. The already implemented way of doing that is the following: char *filename; short itemlist; long fileLength = 0; short retCode; itemlist =…
Benjamin Zach
  • 1,452
  • 2
  • 18
  • 38
3
votes
4 answers

How does HP/Tandem NonStop achieve single failure FT without spares?

As far as I could gather from Wikipedia and the mindboggling HPE website, the claim to fame of the NonStop system architecture is that it can achieve a single-failure FT without having to allocate excessive amounts of spare capacity (i.e. in…
ddimitrov
  • 3,293
  • 3
  • 31
  • 46
2
votes
1 answer

Connect to custom SSH subsystem (TACL process on HP NonStop) with Python and Paramiko

How can I can establish direct connection to a HP NonStop TACL process, without involving any OSS functionality via Python and Paramiko? In HP NonStop SSH manual I can see this (http://www.nonstoptools.com/manuals/FTP-SSH.pdf): To Get a TACL Prompt…
coolio
  • 31
  • 1
2
votes
2 answers

Uploading Guardian file to Tandem/Compaq/HPE NonStop server

I am using OpenSSH. Below bat file code when called from standalone Java program transfers files properly. @echo off del "D:\path\inctf2.txt" /s /f /q set par1=%1 set par2=%2 set par3=%3 set par4=%4 >>D:\path\inctf2.txt echo lcd…
2
votes
2 answers

How do you query table names and row counts for all tables in a schema using HP NonStop SQL/MX?

How do you query table names and row counts for all tables in a schema using HP NonStop SQL/MX? Thanks!
Wuf_fang
  • 21
  • 4
2
votes
2 answers

Tandem/Non-Stop Socket programming

I am new to socket programming and I am trying to implement a client server using TCP. The client is written in Java in Windows and the server is written in C in Tandem/Hp-NonStop. I am able to connect and send request to the server. But I am not…
Ajitav Dutta
  • 99
  • 1
  • 11
1
vote
1 answer

Paramiko sendcmd like in Python ftplib

I have a host system with two systems on it (HP Nonstop). With Python ftplib I can use ftp = FTP() ftp.encoding = encoding ftp.connect(host_addr, ftp_port) ftp.sendcmd('guardian') to use the Guardian system paths ($X.PATH.FILENAME) or use ftp =…
Ezak
  • 137
  • 1
  • 3
  • 14
1
vote
1 answer

Sleep() function in C not working on hp non-stop

I am trying something in C on hp-nonstop(tandem), As part my task is to wait for sometime. I try to use the #include #include #include #include int main() { int i; for(i=0;i<10;i++) { …
Loki
  • 1,180
  • 9
  • 13
1
vote
1 answer

Cobol not entering if, although condition is true

I'm working on a Cobol application that is deployed on HP Nonstop. Debugging on the platform I came across the following situation: IF LABELED-VALUE OF IN-VARIABLE-1 OF PARENT-1 OF GRAND-PARENT THEN MOVE IN-VARIABLE-2 OF PARENT-2 OF GRAND-PARENT…
Benjamin Zach
  • 1,452
  • 2
  • 18
  • 38
1
vote
1 answer

FTP'ing structured files in binary mode

I am trying to FTP a file onto a Tandem HP/Non-Stop environment. The records are written to the file using a C process which are then read using another C process. The file itself contains some records which are not readable using a standard text…
ziggy
  • 15,677
  • 67
  • 194
  • 287
1
vote
4 answers

SSH Scripting for HP Nonstop Guardian with SAFEGUARD

we have some perl scripts to do things on guardian os on a hp nonstop machine with telnet. Now we have to shut down telnet and have to use the ssh (comforte) connection with a safeguarduser. We try to connect with the following perl code and…
Ezak
  • 137
  • 1
  • 3
  • 14
1
vote
1 answer

Enabling SSL for an MQ queue manager on the HP Nonstop

I have an existing MQ MQI connection (Server-Connection) between an HP Nonstop and a Windows server. I am working on configuring the queue manager for SSL on the Nonstop. I have followed a couple sources available on net closely but am still…
yodish
  • 733
  • 2
  • 10
  • 28
1
vote
1 answer

SFTP to HP-Nonstop

I am trying to create a nodejs client to sftp files from a remote HP-Nonstop server, just wondering whether this is possible? Any help would be greatly appreciated!
simon-p-r
  • 3,623
  • 2
  • 20
  • 35
1
vote
2 answers

What is the SQL/MP equivalent of CURRENT_DATE?

SQL/MP is an SQL dialect used on proprietary HP NonStop SQL database systems which go back to the 1980ies... (Who has ever worked on a system that is as old as they are, huh? :)) SQL/MP is only somewhat ANSI compliant, for example CURRENT_DATE does…
fgysin
  • 11,329
  • 13
  • 61
  • 94
1
2 3 4