Using QUALIFY and GROUP BY together ?! - forum topic by veskojl
Can someone throw some light how can QUALIFY,GROUP BY and HAVING be used together? Any link to docs or simple example will be usefull. Also which one takes precedence, when used together and what is...
View ArticleAccess Right Abbreviations - response (5) by sh_na
Can you please include these ones as well.. SH OP GD GM GC
View ArticleTeradata JNDI connectivity - response (4) by ersin.gulbahar
is there any jdbc driver instead of teradata jdbc? thanks
View ArticleListagg, wm_concat or Group_concat equivalent in teradata - response (1) by...
You have to use with recursive to implement listagg.
View ArticleDesign change / Perf Optimization Suggestion required - forum topic by mjasrotia
Table: RETAIL_SHIPMENT / Records - 7 Billion / Partitions - 120 Weekly Partitions Table: CURR_YAGO_CAL - Has Weekend Dates and their Corresponding Year Ago Dates. Sample 2 records Cal_Dt...
View ArticleDesign change / Perf Optimization Suggestion required - forum topic by mjasrotia
Table: RETAIL_SHIPMENT / Records - 7 Billion / Partitions - 120 Weekly Partitions Table: CURR_YAGO_CAL - Has Weekend Dates and their Corresponding Year Ago Dates. Sample 2 records Cal_Dt...
View ArticleCardinality : Populate missing/non-existent elements - response (2) by mjasrotia
Could you please explain again what u need ? not very clear.
View ArticleCASESPECIFIC What is its purpose? - forum topic by zigzagdna
I am a newbie to Teradata; I have lot of experience with Oracle and SQL Server. I am trying to understand what exactly is CASESPECIFIC? I have created a table CREATEMULTISETTABLE premtest.Employee...
View ArticleFast load Error - forum topic by deva_048
I have one column in the table defined as AAA1 decimal(9,2) sample data: 011069125.71 While doing fastload its throwing an error limit exceeded because its more than 9 numbers. My aim is to define the...
View ArticleCASESPECIFIC What is its purpose? - response (1) by chinmay Athavale
Hello, It seems that you are working in ANSI mode. Please not that any comparison in 'ANSI' mode is case sensitive by default, whereas Teradata mode is case insensitive. I checked your SQL in Teradata...
View ArticleHow to bulk insert into teradata tables via a single insert statement -...
If you want to execute a single insert at a time then use BTEQ and looping to achive this, If you want to just load the data from a file to table means use any of the utilities Fload, Mload...
View Articleinterview help - response (8) by Tera-Jagan
Hi, please forward to the pjagankumar12@gmail.com Thanks
View ArticleCASESPECIFIC What is its purpose? - response (2) by dnoeth
To get a case insensitive result both operands must be NOT CASESPECIFIC. Any literal in an ANSI mode session is CASESPECIFIC by default, but NOT CS in a Teradata session. To get the desired result in...
View ArticleStored Procedures - Use dynamic cursor for any table - response (4) by dnoeth
Sorry, i don't get it. Could you rephrase your question? Is there any relation to the original question? Dieter
View ArticleTeradata Training Material available - response (107) by prabha.m17@gmail.com
Hi Todd, I am planning to take TD certification, Please share me the documents. prabha.m17@gmail.com
View ArticleFind position of a character in a string - response (6) by dnoeth
You can modify the query i posted at http://forums.teradata.com/forum/database/stored-procedures-need-help-with-massaging-data-within-an-input-parameter WITH RECURSIVE cte (groupcol, len, remaining,...
View ArticleTeradata Training Material available - response (108) by Raja_KT
Hi, Can you please send to my id: ktraj1@gmail.com? I have the ones from info.tera....... Hope you meanto say that you have WBT and something extra. Thanks in advance, Raja
View ArticleGlobal Temporary Table With Multi-Level Partitioning - forum topic by Raja_KT
Hi, I want to make a Global Temporary or Volatile Table With multi-Level Partitioning in TD 14, since I will be using the data in the session. I could not see anywhere the syntax. Thanks , Raja...
View ArticleHow to get 2 value from same id and same column? - response (3) by dnoeth
For your example (up to two rows per ID) there's a simple solution: SELECT ID, Customer, MIN(Book) || COALESCE(',' || MAX(Book), ''), SUM(Price) FROM tab GROUP BY 1, 2But it's probably more complicated...
View ArticleFast load Error - response (1) by dnoeth
Which format is used to load the data? VARTEXT or DATA? In both cases DEFINE the input columns with matching datatypes (DEC(11,2) or VARCHAR(12)) and FastLoad should put those rows into the ET error...
View Article