How to store a field value of a table column into variables in Stored...
Hi Dan, of course it is: Select count(*) into TableRowsCount from TeradataTable;Dieter
View ArticleCan you join using wild cards col_a like %col_b% - response (2) by dnoeth
Just a remark: When you join like this, you'll always get a product join and you got a really strange data model. Dieter
View ArticleFAILURE 2673 SOURCE PARCEL LENGTH DOES NOT MATCH DATA THAT WAS DEFINED -...
Use CHAR in USING clause instead of VARCHAR as the length of your data is fixed.
View Articlerename USI/NUSI - response (4) by knowledge
Thank you very much for the reply Dieter. When i having to rename the PI or to create a name for the PI without name, i found the solution but when i wanted to do the same for the SI of a tables no...
View ArticleTeradata JDBC driver is too slow when access CLOB access from Teradata. This...
When we using Teradata jdbc driver to fetch CLOB objects from Teradata, the JDBC driver is slow and takes almost 700 secs to fetch 100 MB data across the wire. Please let me know how to resolve this...
View ArticleAutomation ( by ZENA) of Teradata backup jobs generated by TARA GUI ( TSM...
Hi Masters, Good morning. I need help from you regarding automation ( by ZENA) of Teradata backup jobs generated by TARA GUI ( TSM Tivoli) . I will give you little background of our current backup...
View ArticleCounting records according to their date range - topic by h-man2013
Hi Guys Total newbie here. I am trying to learn teradata and struggling with some basic SQL. I've had experience in a few other db's in the (sort of distant past) but Teradata's syntax is throwing me...
View ArticleBoils down to the difference between user and database - topic by quest
Hello, I have set of tables defined in Teradata and need those to be imported into Informatica ETL tool. I setup the connections using user id and pwd (different from database name) and connect. In the...
View ArticleIndex Cocepts in Teradata - response (3) by vinay7
If primary index and secondary index is in same amp than how can we tell it as two amp operation....?
View ArticleNode and Bynet open architecture - response (1) by vigneshm247
Hi I have no idea on these dumps things, But as far as teradata is concerned, It is considered an OPEN system because, It is complaint to ANSI standard and runs on both Windows and Linux.
View Articlerename USI/NUSI - response (5) by Santosh Jodangi
Hi All, If user having spool space of 1tb. The user retrieving data. But the user get the error like. What is the solution of that ? If user1 data in GTT. the another user can use this data?
View ArticleHow to parametrize WHERE IN clause in stored procedure? - topic by veskojl
I'm trying to parametrize a stored procedure, which takes one input string parameter and use it in the where clause in dynamic cursor. The following snippet works with one parameter but when the list...
View ArticleHow to parametrize WHERE IN clause in stored procedure? - response (1) by dnoeth
A parameter is a single value, not a list of values. You need a dynamic SQL string: SET QUERY = 'SELECT * FROM SOME_TABLE WHERE country_cd IN ('|| varlist || ');'; PREPARE S1 FROM QUERY; OPEN C1...
View ArticleTeradata Error Code 7693 - response (2) by dnoeth
7693 User-defined exception is raised from stored procedure Explanation: User attempted to raise a user-defined exception explicitly through a SIGNAL or RESIGNAL statement in the stored procedure and...
View ArticleBoils down to the difference between user and database - response (1) by dnoeth
When the default database is specified, it should be set during logon, might be an Informatica problem. You could check the actual DefaultDatabase column for this session in dbc.SessionInfoV Dieter
View ArticleFAILURE 2673 SOURCE PARCEL LENGTH DOES NOT MATCH DATA THAT WAS DEFINED -...
Even if the length of the data is fixed you still need to define all VARCHARs for a VARTEXT import. Your script should work as-is. But you don't want to load the column name and the title dashes. And...
View ArticleFAILURE 2673 SOURCE PARCEL LENGTH DOES NOT MATCH DATA THAT WAS DEFINED -...
You might consider to change the oracle export strategy to someting like: CONNECT usr_id/pwd set echo off set feedback off set heading off set linesize 32767 (or whatever fits your needs) set...
View ArticleHow to parametrize WHERE IN clause in stored procedure? - response (2) by...
Hi Dieter, I understant that 'US,GE' <> 'US','GE' , the question is how to get the second from first? I alreary tried what you suggest and it doesn't work. SET QUERY = 'SELECT * FROM SOME_TABLE...
View Article