How can we load single row of data into teradata database.
please give me the process.

Answers were Sorted based on User's Feedback



How can we load single row of data into teradata database. please give me the process...

Answer / yuvaevergreen

BTEQ or multiload(loaded tables) or fastload (empty table)
can be used to load a single row. But BTEQ would be a good
option if you load a single row from a file.Below is a example.

//STEP1 EXEC PGM=BTQMAIN
//LOGON DD DSN=TEST.LOGON(DEVLOGON),DISP=SHR
//SYSIN DD DSN=TEST.PARMLIB(BTEQ1),DISP=SHR

//*TEST.PARMLIB(BTEQ1)

BTEQ MAINFRAME IMPORT SCRIPT EXAMPLE – DATA MODE

.SESSIONS 1

.RUN FILE LOGON
.IMPORT DATA DDNAME=REPORT
REPEAT *
USING
EMP_NO (INTEGER)
INSERT INTO EMPLOYEE
VALUES
(:EMP_NO);

.QUIT;

Is This Answer Correct ?    6 Yes 2 No

How can we load single row of data into teradata database. please give me the process...

Answer / subbareddy kake

You can use Insert statement for loading one row into
Database

Is This Answer Correct ?    2 Yes 0 No

How can we load single row of data into teradata database. please give me the process...

Answer / tdguy

bteq could be a better option when it comes to loading a
single row. Other utilities are unnecessary as those are
designed for mass loading and unloading.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Teradata Interview Questions

If RDBMS is halted what will you do ?

0 Answers   Teradata,


What is the particular designated level at which a LOCK is liable to be applied in Teradata?

0 Answers  


What are the primary characteristics of the Teradata.

0 Answers  


Is multi insert ansi standard?

0 Answers  


Why are oltp database designs not generally a good idea for a data warehouse?

0 Answers  






How to explain project Architecture and flow in teradata interviews?Can please anyone help on this? Am new to teradata.

0 Answers   Infosys, Wells Fargo,


What is the use of having index on table?

0 Answers  


what are the roles and responsibilities of teradata DBA ?

1 Answers   TCS,


What are default access rights in teradata?

0 Answers  


what is a multi statement request in TD? what is the diif b/w V2R5 & TD12? what is the diff b/w MACRO & STORED PROCEDURE?

3 Answers   HCL,


How many codd's rules are satisfied by teradata database?

0 Answers  


What is difference between user and database in teradata?

0 Answers  


Categories