Tagged Questions
Teradata Database System is a massively parallel processing system running a shared nothing architecture.
5
votes
6answers
266 views
Need a better option - outer joining 32 times to same table
I have a nasty SQL query problem and I'd love help with an elegant solution. I'm trying to avoid 32 left outer joins to the same table.
The database is Teradata.
I have a table with 14 million ...
5
votes
4answers
389 views
WHERE and JOIN order of operation
My question is similar to this http://stackoverflow.com/questions/879893/sql-order-of-operations but with a little twist, so I think it's fair to ask.
I'm using Teradata. And I have 2 tables: ...
4
votes
2answers
624 views
COALESCE vs IS NOT NULL performance on checking empty string
Some articles I found on the internet compared ISNULL with COALESCE, so I think my question is a little different.
I'm wondering which is better in terms of performance?
SELECT * FROM mytable WHERE ...
4
votes
4answers
3k views
Can you recommend a good source for Teradata Best Practices?
Looks like my data warehouse project is moving to Teradata next year (from SQL Server 2005).
I'm looking for resources about best practices on Teradata - from limitations of its SQL dialect to idioms ...
3
votes
2answers
148 views
Teradata - limiting the results using TOP
I am trying to fetch a huge set of records from Teradata using JDBC. And I need to break this set into parts for which I'm using "Top N" clause in select.
But I dont know how to set the "Offset" like ...
3
votes
2answers
314 views
Connecting to Teradata via Perl
Has anyone had any success with this? There aren't a great deal of references online and I've exhausted every relevant result on Google. Here's my script:
#!/usr/bin/perl
use DBI;
use DBD::ODBC;
...
3
votes
1answer
380 views
Difference between “TOP” and “SAMPLE” in TeraData SQL
What is the difference between "TOP" and "SAMPLE" in TeraData SQL? Are they the same?
3
votes
1answer
181 views
Fastest way to find Quotient by Dividing two Number
I have to do some logic based on the following implementation.
I have a big number upto 36 Digits e.g. 913695089923267549815145223638290430 (randomly generated by different app). I need to divide it ...
3
votes
4answers
2k views
SQL: case-when statement with “exists”
I'd like to be able to set add a field that answers the question "For a value in this record, does that value meet some condition in another table?". I thought I'd try a case-when with an exists, but ...
2
votes
1answer
61 views
What permissions do I need to use the SHOW TABLE command in Teradata?
What permissions do I need to use the SHOW TABLE command in Teradata?
I've looked in the Teradata Data Dictionary, the Teradata Administrator User Guide and searched on Google, but I can't find any ...
2
votes
2answers
77 views
sql expression pattern matching
I want to check for a pattern in sql such that if there is anything in that expression (or table cell) other than numeric it should return 1. If that whole cell has only numeric values it should ...
2
votes
2answers
92 views
Update table1 based on value from table 2 in teradata
I have two tables like this
I would like to insert from Table1 to Table2 here. This is how I want it.
Take MOU = 10. It has num1 and hour1 in the same row.
I would like to insert it into the cell ...
2
votes
1answer
98 views
Column Split Sum over a single ID
Similar to a question I had earlier
Having this table
ID, Year, Revenue
1, 2009, 10
1, 2009, 20
1, 2010, 20
2, 2009, 5
2, 2010, 50
2, 2010, 1
Is it possible to make a query that results in ...
2
votes
2answers
898 views
difference between minus and except in Teradata
what is the difference between minus and except in teradata?
2
votes
4answers
243 views
dbo in SqlServer
I'm converting database from Teradata to SqlServer. I've noticed all tables and procedures are named by the prefix "dbo." (e.g. "dbo.Table1").
I would like to know if and how I can get rid of "dbo" ...
2
votes
2answers
6k views
SQL SELECT multi-columns INTO multi-variable
I'm converting SQL from Teradata to SQL Server
in Teradata, they have the format
SELECT col1, col2
FROM table1
INTO @variable1, @variable2
In SQL Server, I found
SET @variable1 = (
SELECT col1
...
2
votes
3answers
1k views
How to SELECT sum of numbers less than 30 and sum of numbers greater than 30?
I'm trying to write a SELECT statement to select the sum of field but I want to return the sum of numbers less than 30 and also the sum of numbers greater than 30. I realize I can do this with two ...
1
vote
2answers
51 views
Multi-aggregate, Multi-Filter, Single Table SQL
The following simulated table contains order details where cust_nbr represents the order number. I'm trying to find where if an order contains an item_nbr 90000, I need to know if the price for 90000 ...
1
vote
1answer
52 views
Teradata: What is the purposed of CHECK OPTION when adding a foreign key constraint?
I can't seem to find a good resource on the internet that explains the check option that's used when adding a foreign key constraint. I've seen it as with check option and with no check option.
1
vote
1answer
132 views
Teradata: How can you add an identity column to an existing table?
I need to add an identity column to an existing table with this SQL:
alter table app.employee
add ID INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1 MINVALUE 0 MAXVALUE ...
1
vote
2answers
54 views
Getting a Count of Users by Date
I am trying to create a query that will return results for the number of distinct users who have accessed something by date. Right now I have a query that will display 2 columns, the first being date ...
1
vote
2answers
190 views
ANSI Casting Timestamp Netezza - convert SQL from Teradata
I currently do not know ANSI equivalent to Teradata FORMAT key word for converting timestamp, date data types into our required representation formats. I know this can be done with to_char, to_date ...
1
vote
1answer
125 views
SAS connection to Teradata Database using Teradata ODBC
I'm trying to connect to Teradata in SAS. I set up an teradata ODBC on the machine. The assumption currently for me is that using ODBC is the only way for me to access the database. And here is the ...
1
vote
1answer
165 views
Teradata equivalent for lead and lag function of oracle
I have been working ot see the equivalent function for Oracle lead and lag function.
The oracle lead would look like
LEAD(col1.date,1,ADD_MONTHS(col1.DATE,12))
OVER(Partition By tab.a,tab.b,tab.c ...
1
vote
1answer
196 views
cast varchar to integer in teradata
I have a column which is defined as varchar(19). So it can have alpha-numeric values.I have cast it to integer. Simple casting will give overflow exception and if I am tring to format it as Z(9) or ...
1
vote
1answer
106 views
Oracle/PL SQL curosr%notfound equivalent in Teradata
what is the equivalent of Oracle's CURSOR%NOTFOUND found in Teradata?
If not, then how can I translate below code to run in Teradata.
OPEN OPEN_CUR1;
LOOP
FETCH OPEN_CUR1 INTO ... some ...
1
vote
1answer
162 views
Retrieving column and other metadata information in Teradata
I have a half dozen views in SQL Server that I need to replicate in Teradata, but I haven't been able to find the TD equivalent of the SQL metadata tables. I'd like to replicate the following ...
1
vote
1answer
150 views
Can somebody verify this for me in sql or teradata
I have a line of code in Oracle and I had to convert it into Teradata.
The Oracle query is
/* add to avoid invalid number due to junk in column */
AND regexp_instr(table.column, ''[^[:digit:]]'', ...
1
vote
1answer
61 views
How can I find out the date of the last change on a table in Teradata?
I have a table in Teradata that I suspect was changed. Isn't there a quick sql command to get that info as in SQL Server?
1
vote
1answer
88 views
Teradata 3504/3627 Issue
I keep having the same issue revolving a particular query which has the following column:
CAST((COALESCE(price, 0.000000)) AS DECIMAL(18,6)) * quantity amount (TITLE 'Amount')
If I don't mention it ...
1
vote
3answers
725 views
Bteq Scripts to copy data between two Teradata servers
How do I copy data from multiple tables within one database to another database residing on a different server?
Is this possible through a BTEQ Script in Teradata?
If so, provide a sample.
If not, ...
1
vote
2answers
178 views
How to connect to Teradata with C++ on linux
Simple Problem:
I want to connect my linux based C++ program to a Teradata database.
How do I accomplish this?
I searched the web but I only found some ADO and ODBC based solutions for .net or JDBC ...
1
vote
3answers
159 views
Teradata equivalent of MySQL's USING
My question is quite similar to this one, but in Teradata:
SQL Server equivalent of MySQL's USING
Is there any equivalent shortcut to this query?
SELECT * FROM t1 JOIN t2 ON t1.column = t2.column
1
vote
1answer
289 views
Getting Visual Studio to execute SQL queries
In the office we use Visual Studio 2008 with Team Foundation Server as our version control system.
The products we're developing are essentially Teradata SQL scripts and stored procedures that get ...
1
vote
1answer
226 views
What is the difference between a banyan network and a folded banyan network?
What is the difference between a folded banyan and a regular banyan network. Teradata replication is apparently based on a folded banyan design, but many of the google top ranked results to explain ...
1
vote
1answer
442 views
Dynamic “SELECT TOP :paramter” in Teradata Macro
I need to alter a macro the way that a parameter can be passed to control the max size of the result set.
My idea was this SQL:
REPLACE MACRO myMacro
( maxRows INTEGER DEFAULT 100 )
AS
(
SELECT ...
1
vote
1answer
114 views
.Net Data Access integration with Teradata 12.0
I have am working on a .net application that integrates with a Teradata database version 12. Currently, we are using Odbc at the DAL to interface with the database.
Teradata have come out with the ...
1
vote
2answers
477 views
JDBC reconnect problems with Teradata driver using Spring and Apache DataSource
I'm using the Apache BasicDataSource for both commons DBCP and connection pool:
org.apache.commons.dbcp.BasicDataSource
and managing it through Spring:
...
1
vote
4answers
343 views
Switch from Web programming to data warehousing? Should I?
I was looking a report on internet that data warehousing is much lucrative and highly paid IT career. I am talking about technologies like abinitio etl datastage teradata. I work in ASP.net and sql ...
1
vote
3answers
497 views
nth result in Teradata result
I'm trying to make a Teradata SQL query that will return the n-th chronological visit date for each user. E.g.,
user | visit_date
---------------------
a 1/1
b 1/10
c ...
1
vote
1answer
683 views
how to update rows by a range of dates in teradata
I have two tables in a teradata database that look like this
accounts
account_number integer
date_updated_last datetime
delinquency_code varchar(3)
payments
account_number integer
statement_date ...
1
vote
1answer
510 views
Teradata group by time interval
Can anyonen help with Teradata?
I want to create a query that is a standard
select count(*)
from Table
where Column = Something
but has a group by time period done by 5 minute time intervals ...
1
vote
2answers
99 views
Early (or re-ordered) re-use of derived columns in a query - is this valid ANSI SQL?
Is this valid ANSI SQL?:
SELECT 1 AS X
,2 * X AS Y
,3 * Y AS Z
Because Teradata (12) can do this, as well as this (yes, crazy isn't it):
SELECT 3 * Y AS Z
,2 * X AS Y
...
1
vote
1answer
1k views
Teradata equivalent of persisted computed column (in SQL Server)
We have a few tables with persisted computed columns in SQL Server.
Is there an equivalent of this in Teradata? And, if so, what is the syntax and are there any limitations?
The particular computed ...
1
vote
3answers
560 views
Loading data from SAS to Teradata - When is it ready?
When loading tables from SAS to Teradata, SAS loads the data (usually using the FASTLOAD facility) and then continues down the script. However, I often get critical errors because SAS says the data is ...
1
vote
1answer
4k views
Teradata locks - How to know if a table is locked?
Is there a way to know if a table is locked and what kind of lock is currently on a table? I was hoping for something through the DBC tables in teradata, but I can't find any reference to anything ...
1
vote
2answers
842 views
Teradata and SAS with BigInt's
We have a teradata database that is filled with BIGINT datatypes. SAS is the primary analytic engine for the organization. The SAS access library chokes on BIGINT and therefore forces all code to cast ...
1
vote
5answers
7k views
Add a sequential number on create / insert - Teradata
In oracle we would use rownum on the select as we created this table. Now in teradata, I can't seem to get it to work. There isn't a column that I can sort on and have unique values (lots of ...
1
vote
2answers
2k views
How to convert string to binary in Teradata?
I don't find any functions to convert string to binary in Teradata Database manual-SQL Reference -Functions and Operators.
Cast string to byte does not work too.
SELECT C1, C2 FROM table WHERE C1 ...
0
votes
1answer
17 views
teradata xml services on IBM z/os
can you extract data from teradata on ibm z/os as an XML document?
i have searched and found Teradata XML services on windows, unix, etc but it doesnt appear to be available on IBM Mainframe.
are ...