Use TPT to load a million flat files - response (11) by jinli
are those 1 miilion files with the same format and need to load into one table? if so, have you considered to do some pre-processing? such as combine them to some adequaute number of bigger/huge files...
View ArticleTeradata Studio cannot run Stored procedures - topic by darnost
Hi, we would like to use TD studio (version 14.01) which looks like very interesting and powerfull tool. However it seems that the tool does not support stored procedures. At least, we haven't been...
View ArticleLoading using Teradata Parallel Transporter Load utility. - response (15) by...
Hi, Is there a mechanism to load files using tpt operator, and have row number for each row of a file in order. In case i have a file abc.txt where i have 10 rows. Then in the DB i can have rownumber...
View ArticleTeradata Studio cannot run Stored procedures - response (1) by CarlosAL
Dan: RTFM: 5510 Invalid session mode for procedure execution. Explanation: The session mode within which the CALL SQL is submitted is different than the one in which the stored procedure was created. A...
View ArticleTeradata Studio cannot run Stored procedures - response (2) by CarlosAL
I forgot to mention: To change the TD Studio session mode : ->Connection->JDBC Connection Properties->TMODE Cheers. Carlos.
View ArticleFastLoad Timestamp Conversion error 6760 - topic by mbathula@cbs.com
I am bumping into timestamp conversion error when loading to timestamp column with time zone. The table in the column define as device_dt_ut TIMESTAMP(0) WITH TIME ZONE snippet of fastload: read more
View ArticleBTEQ examples - response (20) by Qaisar Aftab Kiani
You can get details on these commands from Teradata BTEQ Reference manual, but in brief these commands can be used for; QUIET - This basically limits BTEQ output (to errors and request processing...
View ArticleUse TPT to load a million flat files - response (12) by neo_3072
These files have a definite format - a header, body and footer. All blocks have some or the data to capture. Tried pre-processing and consolidation using Unix shell script, however parsing logic is...
View ArticleTeradata PMon based Java application - topic by Cvinodh
Hi all, my project uses a TD 13.10 system. we are planning to develop a Java based application to dynamically view the queries run by our ETL jobs. specifically queries that are blocked by other...
View ArticleNeed help in BTEQ(Import) - response (4) by klnsreenivas
Hi, Can we Import integer values in BTEQ, please help me how to import.
View ArticleParameterize source & target table name and also schema details in TPT script...
hi, I have used the above mentioned code snippet. DEFINE JOB . . . ( APPLY $INSERT TO OPERATOR ($LOAD[1]) SELECT * FROM OPERATOR ($EXPORT[1]); ); But getting the error message like this....
View ArticleNeed help in BTEQ(Import) - response (5) by dnoeth
Of course you can import integers. What's the format of the input file, binary or text? For binary you should DEFINE the column as INT else [VAR]CHAR(11) Dieter
View ArticleTeradata PMon based Java application - response (1) by dnoeth
The PMon API is still available, but afaik it's CLI based. And since TD12(?) there's a SQL implementation using UDFs in SYSLIB, check the "Workload Management API" manual, Chapter 4: System PMPC APIs...
View ArticleFastLoad Timestamp Conversion error 6760 - response (1) by dnoeth
The data seems to be in the right format, but 2012-11-16 24:11:45-07:00 is not a valid timestamp, there's no 24 hours. Dieter
View ArticleTeradata PMon based Java application - response (2) by tomnolan
Yes, the Teradata JDBC Driver provides Monitor partition connections to enable your application to invoke PM/API commands. The Monitor partition connection support is documented in the Teradata JDBC...
View ArticleParameterize source & target table name and also schema details in TPT script...
Please take a look at the templates that came with 13.10. I think the "Load...." job variables names used to be known by "Target....". We had to change the names in 14.0 to support the existence of...
View ArticleParameterize source & target table name and also schema details in TPT script...
I have changed the job variable names as u have mentioned. But I am facing the below issue. Cannot open the file '$SCHEMA_emp_test2.txt'due to error 13 Permission denied TPT_INFRA: TPT04032:...
View ArticleFastload Logtable error - response (2) by td4007
try moving the begin loading statement BEGIN LOADING MY_DB.my_data ERRORFILES MY_DB.my_data_ERR1, MY_DB.my_data_ERR2 CHECKPOINT 100000; just after DATABASE MY_DB;
View ArticleTeradata PMon based Java application - response (3) by Cvinodh
Thanks Dieter and Nolan.. This is what I was searching for..
View Article