- Community Home
- >
- Servers and Operating Systems
- >
- NonStop Servers
- >
- Copy Table data
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2025 04:28 AM
04-17-2025 04:28 AM
Copy Table data
We want to copy table data in Tandem from one system to another. Table structure present another system, so we just want to copy the data. Can anyone please suggest commands for this activity? Either using sqlmp or fup utility.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2025 07:29 AM
04-17-2025 07:29 AM
Re: Copy Table data
You can use SQLMP or FUP depending on your environment.
For speed, reliability, and simplicity: use FUP COPY. It's optimized for Tandem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 04:07 AM
04-21-2025 04:07 AM
Re: Copy Table data
Thanks for your reply. But in our case, I want to copy the data between two environment. So I am looking for below options (if possible) :-
1) Generate insert queries from source
or
2) Generate data in csv format , which can be uploaded/inserted into target.
Please let me know , if any of these options available.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2025 12:00 AM
04-25-2025 12:00 AM
Re: Copy Table data
To copy data between two Tandem (HPE NonStop) environments where the table structure already exists on the target, you have two main options:
Option 1.
Generate INSERT Statements
Use SQLCI to select data and format it as SQL insert statements:
SELECT 'INSERT INTO target_table VALUES (' || COL1 || ',' || '''' || COL2 || '''' || ');'
FROM source_table;
You can spool the output to a file and run it on the target system.
Option 2.
Export to CSV Format
You can simulate CSV output in SQLCI:
SET SEPARATOR ',';
SELECT * FROM <schema>.<table>;
Spool the output to a file (data.csv), transfer it, and then use a custom loader or script to insert into the target.
NOTE: Note: Tandem does not have a native CSV import utility — inserting from CSV requires a custom loader, script, or small program.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2025 12:18 AM
04-28-2025 12:18 AM
Query: Copy Table data
Hello,
Let us know if you were able to resolve the issue.
If you are satisfied with the answers then kindly click the "Accept As Solution" button for the most helpful response so that it is beneficial to all community members.
Please click on "Thumbs Up/Kudo" icon to give a "Kudo".