Teradata Database System is a massively parallel processing system running a shared nothing architecture.
2
votes
2answers
372 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
1answer
49 views
Can Non indexing fields be used in filter?
In teradata source I have filter to restrict unnecessary reading of data ,since it contains more than 1 billion records,for optimization purpose.Now the filter condition contains only indexing fields. ...
0
votes
2answers
4k views
Create table but Drop it if the table exists already
I am working on a request where I have to create a table to insert some data. So, obviously I will have first have a delete table st. before the create st. but when I am running this for the first ...
2
votes
2answers
6k views
MAX() and MAX() OVER PARTITION BY produces error 3504 in Teradata Query
I am trying to produce a results table with the last completed course date for each course code, as well as the last completed course code overall for each employee. Below is my query:
SELECT ...
2
votes
1answer
189 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 ...
2
votes
2answers
947 views
Teradata: How to back up a table that uses an identity column?
In Teradata, the way I've been doing backups for tables is like this:
create table xxx_bak as xxx with data
Works great, but I have just discovered that this doesn't work for tables with identity ...
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
vote
1answer
704 views
Teradata: How can I lock a table for read and write so I can execute SQL and then remove the locks afterward?
I am just now starting to dig into Teradata's locking features and Google is fairly convoluted with explanations on this. Hopefully, I can get a very simple and streamlined answer from SE.
After ...
1
vote
2answers
928 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
2answers
197 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
...
0
votes
0answers
147 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
2answers
3k views
Teradata String Manipulation (Second Space)
I'm having great difficulty solving this seemingly easy task:
Purpose:
Create a query that eliminates the middle Initial
Example
Name
Smith, John A
Jane, Mary S
I would like an output such as ...
0
votes
2answers
3k views
Best way to compare contents of two tables in Teradata?
When you need to compare two tables to see what the differences are, are there any tools or shortcuts you use, or do you handcode the SQL to compare the two tables?
Basically the core features of a ...