Teradata Database System is a massively parallel processing system running a shared nothing architecture.

learn more… | top users | synonyms

2
votes
3answers
169 views

Where can I find documentation for ANSI-compliant SQL?

A few months back, I created a view in Teradata. Now, other clients are reporting issues when they are querying the view in ANSI mode. Perhaps I need to go to Google school because I have had no luck ...
1
vote
2answers
103 views

Calculating sales for a particular weekday in a given period in teradata

I have a table with transaction, date and their respective sales value. I need to calculate sum of Sales of all the distinct transactions on all Saturdays between date x and y. Teradata doesn't have ...
1
vote
1answer
153 views

What is the TDPID when i connect SAS to teradata installed on my machine

What is the TDPID when i connect SAS to teradata installed on my machine i am using the following code to connect SAS to teradata: enter code here proc sql; options symbolgen; CONNECT TO Teradata as ...
2
votes
2answers
352 views

SQL Teradata query

I have a table abc which have many records with columns col1,col2,col3, dept | name | marks | science abc 50 science cvv 21 science cvv 22 maths ...
0
votes
0answers
102 views

How to re-design my current SQL Case Logic implementation in Teradata 13.0

I am building out a Staging layer for Master Data and have the following situation and current solution. My Transaction data has nothing but Master Data id's or "codes" and no text descriptions. Most ...
2
votes
3answers
69 views

SQL difference between =0, ='0', IN(0), IN('0')

I inherited some code from a coworker and I noticed that the way that some of the code is not consistent For example, is ther any functional difference between the following: sum(case when (elephants ...
2
votes
2answers
426 views

Compare 3 Consecutive rows in a table

Hi I have an interesting problem. I Have an Employee Table AS Follows CREATE TABLE EMPLOYEE( EMPLOYEE_ID INTEGER, SALARY DECIMAL(18,2), PAY_PERIOD DATE) Now the tables have employees some of whom ...
0
votes
3answers
477 views

Teradata and JDBC driver - classnotfoundexception …but its there?

Trying to work with a JDBC connection to Teradata. I've loaded the tdgssconfig.jar and terajdbc4.jar file and adding them to the classpath with javac when I compile in Linux. But I still get a ...
4
votes
2answers
633 views

concat value of multiple rows into one column

SOURCE DATA: COLA COLB COLC 1 BO AFV 1 BO AKG 1 BO UYD 2 BOS KJHSDKJ 2 BOS YWI 3 POS JHSFJH 3 POS IUXN My desired result is ...
0
votes
1answer
159 views

Why is executing “select * from dbc.columnsX” very slow for teradata 13.10

I encountered a strange problem when I execute select * from dbc.columnsX on teradata 13.10. It is very slow; but on teradata 12.0 it is very fast. For teradata 13.10, does the dbc user lack some ...
0
votes
1answer
40 views

Sorting Coloumns

Using Teradata, I have data that in one coloum thats has 6 options, what i would like is have each of the six options in a seperate coloum with the count of how many entries it has, at the moment i ...
1
vote
3answers
82 views

Modifying a column value depending on other column value for all the rows

I have a teradata table. Now I need to add a column, say, Flag and insert values into the Flag column which will depend on say, Sales. Flag=1 if Sales greater than x or Flag=0. Here is the structure ...
2
votes
3answers
386 views

How does a WHERE clause work when tables are joined to themselves?

I am re-writing a query that was generated by Business Objects and uses "old-fashioned" implicit join syntax. The code joins a table to itself in one part and also has a "global" where clause. For ...
1
vote
1answer
1k views

Teradata: Is there a way to generate DDL from a view or select statement?

I am using a global application user account to access database A. This user account does not have permissions to modify database A's schema (ie, create tables, modify tables, etc). This user also ...
1
vote
3answers
345 views

Calculate Average Time Over 24 hour period

I'm working in Teradata and am trying to calulate the average time a job completes. Data Values: Job Name Start Date End Date End Time D_BDW_CCIP_SRM_LD 10/10/2012 10/11/2012 ...
1
vote
1answer
339 views

TERADATA: Aggregate across multiple tables

Consider the following query where aggregation happens across two tables: Sales and Promo and the aggregate values are again used in a calculation. SELECT sales.article_id, ...
0
votes
2answers
354 views

Drop table in teradata

I tried to drop a table in Teradata database with C# if the table exist. cmd.CommandText = string.Format("IF EXISTS (SELECT * FROM sysobjects WHERE type = 'U' AND name = '{0}') BEGIN DROP ...
2
votes
2answers
685 views

LEFT OUTER join issue in SQL

I have code that looks something like this: select t1.colId, t1.col1, t1.col2, t1.col3, count(t2.colId) from table1 t1 left outer join (select colId from db1.tb90) t2 on t1.colId = t2.colId group ...
0
votes
1answer
146 views

Joining a table in oracle with table in teradata [closed]

i have to join a table in oracle database with a table in teradata database using java. can anybody help me with this ? comments are appreciated .
0
votes
2answers
134 views

understanding a code without knowing its purpose

I am a newb in unix. But i need to understand this code given by client :(. i tried to ask the client details about the code like what the code is supposed to do but he himself has no idea. So ...
0
votes
1answer
439 views

teradata : calculating diffreence between 2 timeintervals

I want to calculate the time difference between 2 time intervals like as shown in the code replace procedure database.table() begin declare v_StartTime Timestamp; decalre v_EndTime ...
1
vote
1answer
380 views

Need to Search a Text Field in Teradata SQL against a list of words and return that word

I am searching a large database for a list of words of varying length between 5-7 characters. So far, I have: Select * from sometable Where upper("Description") like any ("%ABC_123%", ...
1
vote
1answer
99 views

how do i surround a string with double quotes using bteq

I'm creating a CSV File that is then mailed to a user group. In this file there is a long varchar() column that has legimate commas in it. Needless to say, this is throwing off the XLS import. Is ...
0
votes
1answer
37 views

Enriching Table

This is my query: SELECT a.account_type AS ACCOUNT_TYPE ,b.at_account_type_desc ,COUNT(a.BAN) AS num_BAN FROM csm_adx.billing_account_act AS a LEFT OUTER JOIN csm_adx.account_type_act AS b ON ...
2
votes
1answer
3k views

no more spool space in Database

I am using Teradata. In that I am getting 'no more spool space in Database'. My database utilization is 85%. Is there any relationship between this error and DB utilization factor ? Any studies on ...
2
votes
1answer
149 views

Is there a way to run an insert into statement with a valid “?” in it?

I am trying to build an insert into statement that will include a URL string which has a valid "?" in it. I am using Teradata SQL Assistant (Windows XP) and it is trying to translate this into a ...
0
votes
1answer
3k views

substring and trim in Teradata

I am working in Teradata with some descriptive data that needs to be transformed from a gerneric varchar(60) into the different field lengths based on the type of data element and the attribute value. ...
0
votes
1answer
275 views

issue setting primary index on volatile table

I have the following query referencing temp tables, I'm having an issue setting the primary index (i_sys_clm) I'm receiving the error: expecting something between the tab2 and "." If I just use with ...
0
votes
1answer
41 views

Ranking rows and selecting one

I would like that the rows are ranked on Aspez_ID attribute, and that only one row which has ASpez_ID = 1 is selected. The thing is - I want to select one and only one row from the dataset. Can you ...
0
votes
0answers
442 views

best way to learn hadoop tools and hive query language [closed]

I am beginner for hadoop technology. I want to learn Hive and Hadoop as much as better. Please suggest me some web sites. And I would like to know the differences of Hive QL and treditional/ANSI ...
0
votes
0answers
44 views

alignment is out

I got the below code working to return as string. However, the output returns is a messy code which all alignment is out. is there anyway to return the store procedure as the original coding? command ...
1
vote
1answer
125 views

“SELECT DISTINCT” query bringing back too many unique rows

I'm working on a relatively simple query at this stage and I'm wondering how I can derive a single row of data when there is a change in column data (status). I know this sounds like jumble, I'm just ...
1
vote
4answers
54 views

Removing the first entry from a group

I have a table which goes like this c_id b_id 13 151 27 203 38 347 38 349 38 357 72 132 72 475 ...
-3
votes
2answers
546 views

practice sql queries with database [closed]

Is there any site where I can get good database with practice queries to solve. I am seeing a lot on internet, but mostly looks like beginner level.
0
votes
1answer
221 views

Writing SQL queries in XML

http://www.codeproject.com/Articles/11178/Writing-SQL-queries-in-XML-A-support-intensive-app ASP.NET - Storing SQL Queries in Global Resource File? I want to do something like the above link...but ...
0
votes
2answers
2k views

How to create column and set default value in sql select statement

I'm trying to set a default text value for the already derived column "Sub1" Is this possible? I've created placeholders for the columns to be derived using a value of 0. I'm working in Teradata if it ...
1
vote
1answer
179 views

iterating through an sql table efficiently

i have a table with 3 columns rcvr_id(user id),mth_id and tpv. mth_id is calculated as (2012-1900)*12+1,2,3(depending on if it is jan,feb,march). For example mth_id for Dec 2011 is 1344,Jan 2012 is ...
1
vote
1answer
118 views

identifying trends and classifying using sql

i have a table xyz, with three columns rcvr_id,mth_id and tpv. rcvr_id is an id given to a customer, mth_id is a column which stores the month number( mth_id is calculated as (2012-1900) * 12 + ...
2
votes
1answer
199 views

SQL prototype design: facing silent truncation of data using varchar(N) — any better alternatives? (Teradata)

Situation: varchar(20) seems to truncate silently in Teradata and not to expand or complain when encountering strings larger than 20 characters long... This is a bit of a surprise as I expected ...
0
votes
1answer
185 views

volatile table usage in Informatica

In my Informatica mapping, I need to do the following activities: creating 'A' volatile table inserting records into 'A' table, from 'B' normal table again I want to insert records into 'C' normal ...
2
votes
2answers
924 views

SQL - What is the performance impact of having multiple CASE statements in SELECT - Teradata

So I have a query that requires a bunch of CASE statements in the SELECT. This was not the orginal design but part of a compromise. So the query looks something like this: SELECT ...
0
votes
2answers
196 views

issue with grouping (Teradata SQL)

I'm getting the error "Selected non aggregate values must be part of the associated group" I started getting this error when I added the line " ,current_date - pmnt_rlse_dt as "Days Since Paid" I ...
-2
votes
2answers
1k views

Snapshot too old error

I am getting 'snapshot too old error' frequently while i am running my workflow when it runs for more than 5 hrs.My source is oracle and target is Teradata. Please help to solve this issue.Thanks in ...
0
votes
5answers
455 views

Getting distinct values from Resultset

I have the following table Employee and records as follows: Eid Ename Phone ------------------------ 1 A 043 1 A 067 2 B 073 2 B ...
-2
votes
1answer
472 views

Teradata import error - import complete but no data inserted into columns

I am using Teradata's SQL Assistant to load data into a table. File has matching columns with same layout. Any ideas of why this would complete the import but not insert any data into the table? Here ...
1
vote
2answers
579 views

Moving columns in Teradata

I´ve created one new column in Teradata, and then I have moved the data from another colum into this new colmn. After that, I've deleted the old column. What I would like to do now is to move the new ...
1
vote
1answer
523 views

Reversing a string using Teradata SPL

How can I reverse a string using Teradata Stored Procedure Language (SPL) ? The requirement was to replicate the SQL-Server replace() function. This could be achieved by writing a corresponding UDF in ...
0
votes
1answer
143 views

Copy Status Message in Teradata

IS it possible to copy status message in teradata? (I don't want to type them everytime, for example when I try to google the error message)
1
vote
1answer
497 views

TeraData aggregate function

when I try to select couple of columns with count, i am getting following error. "Selected non-aggregate values must be part of the associated group". My query is something like this. SELECT ...
1
vote
3answers
1k views

Changing column datatype from DECIMAL(9,0) to DECIMAL(15,0)

Can you please help me concerning this matter (I didn´t found it in the Teradata documentation, which is honestly little overwhelming): My table had this column -BAN DECIMAL(9,0)-, and now I want to ...

1 2 3 4 5 8