Quantcast
Channel: Teradata Forums - All forums
Viewing all 27759 articles
Browse latest View live

Loading data files from hadoop to teradata using TPT - response (1) by amvaidya

$
0
0

We use Teradata Parallel Transporter Version 13.10.00.12


what does panicloopdetected contain? - forum topic by pratikjain998

$
0
0

Hello,
My teadata pde status was down/hardstop. Somwhere on blogs i read that the issue is because of panicloopdetected file presence. So i deleted this file now my database service is running.
 
I just want to know what does this file contain and why teradata have created this.
 
Thanks :)
 
 

Forums: 

Parameterize source & target table name and also schema details in TPT script - response (10) by vijaydf

TPT - Tenacity - forum topic by vijaydf

$
0
0

In tpt 13.00 we dont have any default Tenacity, the job waited util it gets the load slots, but in 13.10 the job is taking up some default Tenacity as 6 mins for 4 hrs as result the job is failing after waiting for 4 hours.. We can increase the value by defining the attribute TenacityHours, TenacitySleep in the tpt script..  but we need to touch nearly 2000+ scripts to include this variable. Can this Tenacity be increased by anyother way, i mean through TSAM or any database settings?

Forums: 

Diyotta Data Integration Suite for Teradata - forum topic by IDX

$
0
0

Hi All,
Diyotta DI Suite is ELT DI platform purpose-built for MPP Data Warehouse platforms, fully leveraging the power of these systems with true in-database processing, with vast performance gains for data integration.
Benefits of using Diyotta DI Suite:
• Fully leverage your Teradata platform for in-database processing
• Eliminate intermediate ETL products and hardware
• Drastically reduce data latency from hours to minutes
• Accelerate data stream development 
• Maintain end to end data lineage and impact analysis
 
Please visit Diyotta.com to know more about the solution.
 
Thanks

Teradata Database Standards - forum topic by SHF

$
0
0

I am looking for best practices for database naming conventions and database hierarchy settings on TD12.
Any documents will help.
Thanks

Forums: 

IN-List - forum topic by SHF

$
0
0

Is there an IN-List Limit on TD 12 where performance isn't impacted?

Forums: 

guide for aster client - forum topic by dgilman9999

$
0
0

Hi, does anyone know where these pdfs are?  From the aster client 5.10 aix readme:
6. Follow the installation directions for the client package in the Aster Database Client Guide.
    There are three documents the user should reference:
    Aster_Client_Guide_0510.pdf
    Aster_Drivers_and_Utilities_Matrix_0510.pdf
    Aster_Client_Release_Notes_0510.pdf
I am having no luck finding them.
Thanks in advance.

Forums: 

Teradata Training Material available - response (113) by herman.sotomayor

$
0
0

Hello Todd,
 can you please send the material to herman.sotomayor@gmail.com
Thanks

TeraData JDBC and WebLogic 12c - forum topic by sculling

asterdata nClusterDNProvider - forum topic by bhupigs

$
0
0

Asterdata extension framework mentions about installing ado.net drivers and they mention referencing nClusterDNProvider.dll file for the provider...however after finishing the install I dont see the file anywhere...  teh document doesnot mention any location adn searching my computer yields no result... I have looked at all standard locations like program files/ program files(x86)... assembly folder etc etc..
 
Has anyone run into this issue

Forums: 

Loading data files from hadoop to teradata using TPT - response (2) by RyanBerti

$
0
0

Hi there,
TPT currently does not support loads / unloads to and from Hadoop. This feature will be available in TPT 15.0.
If you'd like to use TPT 13.10 to read data from Hadoop into Teradata, you'll have to use the command 'hadoop fs -get' to move the file onto your local machine from HDFS. One the file is local, you can use TPT to read the file using the DATACONNECTOR PRODUCER operator. TPT 13.10 does allow you to specify single byte hex values for the TextDelimiter attribute, but you'll have to use a program like hexedit to encode the hex byte '01' into the TPT script. Later versions of TPT allow multibyte hex delimiters to be specified via the TextDelimiterHEX attribute.
If you're open to utilizing a different load / unload product, we've recently released the Teradata Connector for Hadoop. For more information, see http://developer.teradata.com/connectivity/articles/teradata-connector-for-hadoop-now-available
Ryan
 

How to spell out numeric value in English words by select query. - response (1) by ksaikrishna

$
0
0

Hi All,
Can any one help me on this?

Thanks
sai

How to spell out numeric value in English words by select query. - response (2) by dnoeth

$
0
0

Hi Sai,
"sp" in Oracle is only supported for DateTime, same in Teradata:

SELECT TO_CHAR(CURRENT_DATE,'yyyysp');


 *** Query completed. One row found. One column returned.
 *** Total elapsed time was 1 second.

TO_CHAR(Date,'yyyysp')
-----------------------------------------------------------------
two thousand thirteen

 BTEQ -- Enter your SQL request or BTEQ command:
SELECT CAST(TO_CHAR(CURRENT_DATE,'jSp')  AS  VARCHAR(100));


 *** Query completed. One row found. One column returned.
 *** Total elapsed time was 1 second.

TO_CHAR(Date,'jSp')
---------------------------------------------------------------------
two million four hundred fifty-six thousand four hundred eighty-six

 
Of course you could do some int-to-date calculations to get it for numbers, too.
How many digits do you need?
 
Dieter
Dieter

Receiving Failure 2673 The source parcel length does not match data that was defined while importing using BTEQ - response (6) by Manjunath.2012uppar

$
0
0

Dieter,
Thanks a lot , this worked :) 


How to spell out numeric value in English words by select query. - response (3) by ksaikrishna

$
0
0

Hi  Dnoeth,
THnaks for the information.It is really usefull for me.
I have one more question.
Can't we spellout the numbers in terdata?
In requirement have a column having 4 degit numbers  and need to spellout it at report level.
Could you please help on this? and also let me know any limitations on interger(like range..etc)
Thanks ,
Sai
 

How to spell out numeric value in English words by select query. - response (4) by ksaikrishna

$
0
0

Hi Dnoeth,

THnaks for the information.It is really usefull for me.

I have one more question.

Can't we spellout the numbers in terdata?

In requirement have a column having 4 degit numbers and need to spellout it at report level.

Could you please help on this? and also let me know any limitations on interger(like range..etc)

In Oracle "

SQL> select sal, (to_char(to_date(sal,'j'), 'jsp'))
from emp;
the output like,
SAL (TO_CHAR(TO_DATE(SAL,'J'),'JSP'))
--------- -----------------------------------------------------
800 eight hundred
1600 one thousand six hundred
1250 one thousand two hundred fifty
If you want to add some text like,
Rs. Three Thousand only.
SQL> select sal "Salary ",
(' Rs. '|| (to_char(to_date(sal,'j'), 'Jsp'))|| ' only.'))
"Sal in Words" from emp
/
Salary Sal in Words
------- ------------------------------------------------------
800 Rs. Eight Hundred only.
1600 Rs. One Thousand Six Hundred only.
1250 Rs. One Thousand Two Hundred Fifty only.
14. Display Odd/ Even number of records

How to achive this in terdata?

Thanks ,
Sai

what does panicloopdetected contain? - response (1) by dnoeth

$
0
0

/var/opt/teradata/tdtemp/PanicLoopDetected is an empty file.
From the "Messages" manual:
 

13821 Crash loop detected during TPA initialization.

Explanation: In order to prevent PDE initialization from looping forever when an error prevents it from completing, it is

only automatically restarted three times. After three unsuccessful initialization attempts, this message is issued and restart

attempts are discontinued, leaving PDE down.

 

 

Dieter
 

PDO is not possible with Teradata 12 and Informatica 9.5.1 - forum topic by quest

guide for aster client - response (1) by dnoeth

$
0
0

It's the same place as any Teradata docu:
http://www.info.teradata.com/AsterData/eBrowseBy.cfm
 
Dieter

Viewing all 27759 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>