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

learn more… | top users | synonyms

0
votes
0answers
69 views

Getting error while loading data through mload

I am getting the following error while loading data from flat file into table. Not enough data in vartext here is the format of the flat file. ...
1
vote
0answers
68 views

Teradata 12.0: Referential Integrity Constraint

Is it possible to add a referential integrity constraint on a column which references a non primary-key column in another table. I basically have a table with an ID column which is non-unique. I ...
-1
votes
1answer
83 views

getting special character in fast exportscript [closed]

sel cast(trim(Env) as char(6)) , cast (trim(Databasename) as char(30)) from DB.Top_Space_Consumer; I am running above query through fast export and getting data in below format. %^@^@PKPTD ...
0
votes
1answer
59 views

SQL loop in select

Need to update a column in our database. A column which can have upto 7 sets of numbers separated by a space between them. like 3548 132 760 2348 123 346 37 982 439 I need to update these columns ...
0
votes
1answer
183 views

Connect to teradata from VBA and run codes parallerly

We often have Excel connect to a teradata database and run some sql for various reports/models we produce. If I'm right this will always connect and 'Execute' as per a standard query run in Queryman. ...
0
votes
1answer
78 views

Retrieve huge number of records ( 300000 ) using a c# code from a table (Teradata Database)

I have a portion of a code where I need to get the data from the table for a particular condition ( where accountid = ' ' ) . The data retreival is a very slow process . Retreving record it self ...
0
votes
2answers
163 views

recursively increment a date in sql

I am working on a historical conversion of data and was wondering if there's a more efficient way to accomplish a date increment. I receive a data from a source system on a saturday date (1-7-13) and ...
1
vote
1answer
24 views

Attunity Terada - Sql Server 2008 R2

Can anybody tell me if it is possible using Attunity for Teradata database and a Sql Server 2008 R2 database to have the "false load" loaded in a database and the logs in a different database? Thank ...
0
votes
1answer
54 views

Does Teradata 14 support bitwise?

I can swear that I heard that TD14 will support bitwise, but I see no mention of it in searches nor searching "bitwise" in the TD14 manual. Can someone confirm whether or not bitwise is supported? ...
0
votes
1answer
45 views

Database is throwing exception while trying to store a file of size 2MB as a BLOB data

In one of my application i was trying to save one file (Size of the file is 2MB) in to the teradata database table as a BLOB data by using JDBC connection. But everytime i was getting one exception ...
0
votes
1answer
50 views

terdata fastlod will work even when there is no data in the file?

I was curious to know whether teradata FastLoad works fine(loaded with zero rows) when there is no data in the input file or the fastload will be aborted saying there is no data in the file
0
votes
0answers
78 views

Normalizing a string teradata

i have a Teradata table with over 100 M rows that im looking to do some normalization on. one of the columns is a string, comma separated, that details a list of invalid reasons for my data. number ...
1
vote
4answers
68 views

Alternate query to join two seperate queries

My sample queries as follows: SELECT q3.* FROM ( ( SELECT prod_id, prod_name, cust_id FROM sell_info ...
1
vote
2answers
256 views

Getting Stata and volatile tables in Teradata to play nicely

Is there a way to tweak ODBC/Stata to work with volatile tables on Ubuntu? Here's an example of a simple toy SQL query that I am using in Stata: odbc load, exec("create volatile table new_usr as ...
1
vote
1answer
188 views

How to transfer data between databases with SELECT statement in Teradata

So I am stuck on this Teradata problem and I am looking to the community for advice as I am new to the TD platform. I am currently working with a Teradata Data Warehouse and have an interesting task ...
1
vote
2answers
295 views

sql rows into columns pivot table

I have sql view like this: id date_from date_to 1 2005-01-05 2005-05-10 1 2005-01-05 2005-05-10 1 2005-01-05 2005-05-10 2 2005-01-01 2006-08-31 2 2010-01-01 2010-06-30 3 2005-01-01 2005-06-30 ...
2
votes
2answers
162 views

How do I add comments to existing table DDL in Teradata?

I am adding some new columns to a table and want to add documentation to the table DDL for future developers. How does one go about this?
-1
votes
1answer
93 views

Teradata and Asp.Net [closed]

May know the basic requirements for a asp.net and teradata application. How to connect to Teradata using asp.net(c# code). I have zero knowledge on Teradata. I know that we need a provider for DB ...
1
vote
2answers
53 views

counting events over flexible ranges

I am trying to count events (which are rows in the event_table) in the year before and the year after a particular target date for each person. For example, say I have a person 100 and target date is ...
2
votes
4answers
182 views

What is the effect of multiple SQL set operators in a single query?

I am trying to understand what is happening with an existing query that has multiple "set" operators. Various web searches I've tried have not revealed anything, nor has my quick review of the ...
1
vote
2answers
972 views

hadoop vs teradata what is the difference

I've touched a Teradata. I've never touched hadoop, but since yesterday, i am doing some research on that. By description of both, they seem quite interchangable, but in some papers it is written that ...
0
votes
0answers
16 views

Drop Table and Create Table During Program's First Launch [duplicate]

Possible Duplicate: Create table but Drop it if the table exists already During the first launch of my program I am getting error because of the following: I make a DROP TABLE x; ...
0
votes
1answer
260 views

teradata : filtering alpahanumeric & only alphabets

i have data in one of the columns which looks like column data: 1.A123BDG 2.ADGHKKL 3.12HJKLL 4.78GHUBD 5.GHJKUIP 6.KGJHGJG Now i have to filter out the data in such a way that i have ...
0
votes
1answer
91 views

Conditioning on multiple rows in a column in Teradata

Suppose I have a table that looks like this: id attribute 1 football 1 NFL 1 ball 2 football 2 autograph 2 nfl 2 blah 2 NFL I would ...
0
votes
0answers
93 views

Making an Adjacency Matrix Using Database Table

My table has the following structure: Column 1 - Product_Catalog_Elemet_KEY Column 2 - Product_Catalog_Element_NAM Column 3 - Parent_PCE_KEY Column 4 - Rec_Start Column 5 - Rec_End (9999-12-31 marks ...
0
votes
0answers
189 views

Teradata dbc.columns: Why does ColumnFormat column differ from the table DDL's column definition?

I run this SQL: select * from dbc.columns where databasename = 'mydb' and tablename = 'mytable' and columntype = 'ts' and 1=1 order by tablename; The column is a Timestamp(6) and ...
0
votes
2answers
257 views

Export From Teradata Table to CSV

Is it possible to transfer the date from the Teradata Table into .csv file directly. Problem is - my table has more that 18 million rows. If yes, please send tell me the process
1
vote
3answers
242 views

Finding Start and end Date for a week given the week of a year in Teradata (SQL)

I am doing data conversion and i need to get the start and end dates of a given week. My source has the date stored in a single int column 'year_wk'. Examples for this column would be 201201 - ...
3
votes
1answer
165 views

RowID in Teradata

I need to pull a row ID with a select statement. Something that is similar to the row ID of oracle. How would I do that in Teradata? I am trying the following query but it is throwing error. select ...
0
votes
2answers
270 views

Date range comparison using varchar columns in Teradata

I've been tasked to take a calendar date range value from a form front-end and use it to, among other things, feed a query in a Teradata table that does not have a datetime column. Instead the date ...
0
votes
0answers
145 views

Creating a Hierarchy (Tree Structure)

I have an excel file in which the tree structure is presented. What I have to do is transfer this structure into the database table. Which I did. The problem I encountered concerns updating the ...
0
votes
3answers
74 views

Can I create a build a dynamic where clause using the entries from a table

I am having a Metadata table as below: RULE_NAME COL_NAME COL_VAL RULE_1 COL_1 ABC RULE_1 COL_5 XYZ RULE_2 COL_2 123 RULE_2 COL_3 A2d5 RULE_2 ...
0
votes
0answers
82 views

Multiple mappers for small file

I'm working on an ETL application based on Hive. One functional requirement is that we export some of the data in Hive to Teradata (which is the existing solution being used) and vice versa. My issue ...
0
votes
1answer
391 views

Setup Teradata database on windows 7 32-bit

I want to start working with Teradata database and for that I need to setup it on my system. After searching a lot I didn't find any setup which I can use to install it on windows machine. The only ...
1
vote
1answer
130 views

Try/Catch is not suppressing ODBC driver error message

I'm attempting to handle login errors before advancing to the next form and, for the most part, everything is working. I am having one problem - when the network connection is not established, the ...
0
votes
0answers
56 views

Teradata Assistant Database Explorer

I am having problems with Teradata Assistant (verion Teradata.Net 13.11.0.1) The Problem is with Database Explorer window becuse it is fixed length and width and I can“t adjust it as answer window and ...
0
votes
1answer
61 views

System or catalog tables - DBA_ / DBC - outputs are volatile

I am trying to get list of all tables/views (in other words all objects) where a particular field is referenced using the system or catalog tables. I am using the following query. select * from ...
3
votes
2answers
92 views

Hierarchical vs. Short-Circuit assigment in SQL?

In SQL, the following conditional assignment construct is short-circuit, i.e. the decision variable receives the expression corresponding to the FIRST true when clause: case when (...) then ...
4
votes
1answer
162 views

Issue with querying Teradata in Python/Pyodbc

I'm trying to query a Teradata database in Python with PyODBC. The connection to database is established alright; however, when I try to fetch result, I ran into this error "Invalid literal for ...
1
vote
0answers
111 views

Incorrect exit status of wrapper script in KSH

We have a wrapper script for Teradata TPT utility. The wrapper script is pretty straightforward but the problem is that the exit status of the wrapper is not the same as that of the utility. In many ...
1
vote
1answer
316 views

Teradata Performance issue and example

I am facing an issue in our Teradata QA environment where a simple query that ran in under 1 minute is now taking 12 minutes to complete. This select is pulling 5 fields based on a simple inner join ...
1
vote
1answer
234 views

How do I coalesce a Time field in Teradata?

I'm trying to run the following piece of code: SELECT a.job_name , coalesce(b.target_time, cast('08:00:00' as time(2))) sla_time FROM ud812.slarpt_job_level_info a left outer join ( select ...
1
vote
1answer
109 views

What is the FastLoad (in Teradata) equivalent for ParAccel?

I have recently shifted from Teradata to ParAccel and I use my BI DBMS with SAS environment. Teradata has this utility called FastLoad for loading large datasets fast and more efficiently. I often ...
1
vote
1answer
91 views

Avoid duplicating calculations when filtering by an aggregate of an aggregate?

I am trying to pull monthly sales of stores which exceeded sales of 10,000 units per month at least 6 months in the past year. My source sales table is daily. Therefore, I am calculating sales for ...
0
votes
1answer
105 views

Get n random records where n is stored in a table [duplicate]

Possible Duplicate: How to randomly select rows in SQL? Suppose that -- in Teradata 12 -- I have a table TXN that has Transaction_ID and Store_nbr. Suppose also that I have a table SAMP ...
0
votes
2answers
199 views

How do I search for a five digit number in a string column?

What I'm trying to do is determine (Using Teradata SQL) if a person's zip code has accidently been put on an address line. I've looked on various forums and I can't find any similar questions. ...
0
votes
1answer
75 views

Will dropping transient journals affect other users?

Teradata SQL Assistant fails to create a new table due to the error "No more room in database DBC". I figured out that the Transient Journal is taking up too much space. I, personally, have no ...
1
vote
1answer
215 views

How can I get Teradata SQL Assistant to autocomplete my columns while writing queries

Just installed Teradata SQL Assistant 13.0 and I would like for it to display a list of columns within the table I'm selecting while building the query. Example: SELECT * FROM TABLE1 T WHERE ...
1
vote
2answers
669 views

Explain Query Bands in Teradata

Can anyone explain Query Bands in Teradata? I've searched regarding this a lot, but wasnt able to get information which I can understand. Please be a bit detailed. Thanks!!!
0
votes
2answers
803 views

How to insert multiple records using single insert statement in Teradata?

In teradata, can we insert multiple records using single insert statement in query. If yes, how ?

1 2 3 4 5 8