Questions tagged [tandem]

Tandem Computers, Inc. was the dominant manufacturer of fault-tolerant computer systems for ATM networks, banks, stock exchanges, telephone switching centers, and other similar commercial transaction processing applications requiring maximum uptime and zero data loss. The company was founded in 1974 and remained independent until 1997. It is now a server division within Hewlett Packard.

Tandem Computers, Inc. was the dominant manufacturer of fault-tolerant computer systems for ATM networks, banks, stock exchanges, telephone switching centers, and other similar commercial transaction processing applications requiring maximum uptime and zero data loss. The company was founded in 1974 and remained independent until 1997. It is now a server division within Hewlett Packard.

Tandem's NonStop systems use a number of independent identical processors and redundant storage devices and controllers to provide automatic high-speed "failover" in the case of a hardware or software failure.

54 questions
1
vote
1 answer

How to edit a entry sequenced enscribe file

I need some help with this problem. It looks stupid but i could not resolved it. I have a entry sequenced file with variable length records. I only need to replace the first 3 bytes for XXX so i have to rebuild the whole file for this.. The problem…
Nico
  • 309
  • 1
  • 3
  • 18
1
vote
0 answers

Executing a function based on an event where a function returns in c, is this possible in runtime?

the issue I'm experiencing , is certain applications make use of a library that has been created to include logging , we cannot recompile the code for the running applications as they are legacy applications. so I need to add functionality in the…
CK_ONE
  • 11
  • 2
0
votes
1 answer

How to compute custom timestamp in COBOL85 Tandem?

I want to calculate timestamp for custom date and time. E.g 23/09/2022 4:30:45
0
votes
1 answer

Tandem - Is there an equivalent to cURL in HP NonStop?

I need to execute a simple HTTP POST to a URL from the NonStop computer to make sure a service functions correctly. Is there a way to do this?
vuimo
  • 1
0
votes
1 answer

how to parse raw result of sqlci query with TelnetClient in java

how can i parse raw sqlci query result executed with TelnetClient in java? I was trying something like this: String responeExample = "CLI_IDC CLI_VRT CLI_IND_PER_EMP CLI_TIP CLI_CIC CLI_COD_EST\n" + …
fneira
  • 291
  • 1
  • 8
0
votes
3 answers

TACL Filtering results from a history command

I have been trying to think of solutions for this but have not had much luck on my own. I am trying to create a macro/routine that will filter out certain results from the system as we normally get flooded by them. Is there a way to filter results…
Gizmo0
  • 13
  • 5
0
votes
3 answers

TACL How to use multiple Arguments

I was wondering if we have any TACL experts out there can can help me answer probably a very basic question. How do you inject multiple arguments into you routine. This is what I have currently so far [#CASE [#ARGUMENT / VALUE job_id/number /minimum…
Gizmo0
  • 13
  • 5
0
votes
3 answers

Is there a grep equivalent in TACL on HP-Nonstop?

As it says in the title; if yes, I would, of course, need a bash-like pipe in order to use it comfortably.
Benjamin Zach
  • 1,452
  • 2
  • 18
  • 38
0
votes
1 answer

HP Nonstop Tandem T4SQLMX driver double precision issue

I use T4SQLMX type 4 jdbc driver to read a double precision field from a SQL/MX table. The Actual value is 29963.26, however, the value read using the jdbc driver seems to be 29963.260000000002. This seems to be an issue even if I read it as…
Thulasi
  • 126
  • 3
  • 19
0
votes
2 answers

JDBC DatabaseMetaData method not implemented by JDBC(T4SQLMX) driver

I am setting up a Spring-boot application to connect to HP NonStop Tandem's SQL/MX. First I achieved this connection by hard-coding the jdbc parameters like dataSource, URL, etc in the service section of the application and it worked (I was able to…
Thulasi
  • 126
  • 3
  • 19
0
votes
2 answers

Simple TACL macro to purge and create new file

I want to purge existing file, create new file using tedit and copy the contents of unstructured file to new file using jlist with the help of TACL macro. ? TACL MACRO #PURGE $A.B.C #TEDIT $A.B.C ! #JLIST $D.E.F, PUT $A.B.C, NOPRINT If I run above…
Christie
  • 19
  • 8
0
votes
2 answers

Unstructured disk file conversion

I am working on TACL/OSS environment where I need to make a copy of unstructured disk file and then work on it. FUP DUP command creates a new copy of file which is unstructured one. I have code written in Unix for manipulating a file(.txt) tested on…
Christie
  • 19
  • 8
0
votes
1 answer

Python commands on OSS

I have extracted the python 2 package in OSS HP Non stop environment with the help of Network team. Does anyone know how to invoke python commands in OSS? If I try OSH it takes me to the Linux environment. When I try to access python its giving…
Christie
  • 19
  • 8
0
votes
1 answer

How to get started?

I am trying to get started with HP Nonstop and am trying to set up a local development environment http://h17007.www1.hpe.com/nl/en/enterprise/servers/integrity/nonstop/nonstop-development.aspx#.W8SYvxNKhQJ There are some dead links here. Does…
zatopek
  • 333
  • 2
  • 8
0
votes
1 answer

HP/Tandem TACL How to use the % as a value in the SQL like clause

In my TACL, I'm trying to create a variable used as input to an SQLCI command. I want to use a LIKE clause with a % as a wildcard. Every time it replaces the % with a ? causing the SQL statement to not return the desired results. Code snippitz: …