2
votes
1answer
47 views

The Best Approach for this Data Transformation

I'm simplifying reality for the sake of simplicity... I have a table with millions of Temperature observations: ObservationID, LocationID, Observation_Date, Temperature I want to write a query, but ...
0
votes
0answers
26 views

Duplicating records for a date range

I have to duplicate records from week level data and push it back so that it fills in the previous week with the data. So i get a row for 1/6 which is a Saturday, and then fill in all the columns to ...
1
vote
1answer
303 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
1answer
1k views

Joining on multiple tables in teradata

Please help me through this sel a.col1,a.co2,a.col3,.........b.col1,b.col2..,c.col1,c.col2 from table1 as a inner join table2 as b on a.col1 =b.col1 inner join table3 as c on a.col1 = b.col1 where ...
1
vote
3answers
333 views

SQL Query Design for data validation issue

I have a fact table that contains some finance data. There is a column (VERS_NM) that defines wherther the value is "Actual" or "Current Outlook". The value for these two should always be the same but ...
1
vote
1answer
762 views

Can I query a procedure's RequestText in Teradata?

Teradata has a useful view called dbc.tables that you can use to query objects. I've used this to query the RequestText in views with success, but procedures seem to be compiled a bit differently. ...
0
votes
1answer
3k views

How to write batch (*.bat) script to execute Teradata query using BTEQ?

Below is the content of my script.bat : @echo off cd C:\Program Files\Teradata\Client\13.0\bin bteq .LOGON server/username,password; select date; .LOGOFF @echo off goto end :end @echo exit I ...
0
votes
1answer
636 views

Tuning in Teradata (group by)

I am trying to tune a query in Teradata. It's pretty huge, so I am giving below the outline: SEL column_1, column_2......column_20, sum(column_21), sum(column_22),.....sum(column_30) from table_a a ...
2
votes
1answer
298 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 ...
1
vote
4answers
3k views

Teradata - Invalid Date supplied for FIELD

I'm trying to query a table that has a varchar(100) "VALUE" column. This column can hold anything from a letter, a number or, in this case, a date. The date will always be entered in the table as ...