Quantcast
Channel: Teradata Forums - Database
Browsing all 14773 articles
Browse latest View live

Filter on two separate date field ranges using between function - response...

I need to match the dates between the two fields for each record.  Do you need to see the complete SQL statement?

View Article


Filter on two separate date field ranges using between function - response...

You can use the following SQL Where C.pmt_last_upd_dt = B.b_a_added_date AND (C.pmt_last_upd_dt between '2013-07-01' AND current_date AND B.b_a_added_date between '2013-07-01'AND current_date)This is...

View Article


Filter on two separate date field ranges using between function - response...

Yes, this is what I needed.  Thanks for your help!

View Article

Creating Group ID from SUM Limit - response (8) by saraider99

I ended up using a suggestion from the guys over at stack overflow. First create a table that has the group id and the upper and lower limits of each bucket. -- create the first entry for the recursive...

View Article

How to calculate business days turntime between 2 timestamps - forum topic by...

I am trying to find an easier way to calculate turntime between 2 timestamps excluding holidays.  I know that it will require a cartesian join to a calendar table with holidays but the SQL is getting...

View Article


Dynamically Determine Date Range Based on System Date - forum topic by geo0071

Hello, I am trying to schedule a report that will run on a monthly basis.  I am using Business Objects as the front end and Teradata as the backend database.  I would like to generate the date range...

View Article

Correlated SubQuery needs Tuning.. INDEX and LENGTH functions causing problem...

Hi All, I have scenario like below:Requirement - Need to select ID values those are present ( hidden)  in DESCR column. But no joining condition in both the tables.Query I have used - Problem Faced -...

View Article

Correlated SubQuery needs Tuning.. INDEX and LENGTH functions causing problem...

Hi All, I have scenario like below:Requirement - Need to select ID values those are present ( hidden)  in DESCR column. But no joining condition in both the tables.Query I have used - Problem Faced -...

View Article


Correlated SubQuery needs Tuning.. INDEX and LENGTH functions causing problem...

Hi, INDEX and SUBSTR functions impact the query performance, I suggest you should use a derived table instead of Subquery. Perform all the INDEX and SUBSTR functionality inside the derived table and...

View Article


How to calculate business days turntime between 2 timestamps - response (1)...

Hi, You can consult the following thread:http://forums.teradata.com/forum/database/calculate-business-days-hours-between-two-timestamp6-fields 

View Article

Dynamically Determine Date Range Based on System Date - response (1) by...

Hi, You can use the following query.  SELECT CURRENT_DATE - EXTRACT(DAY FROM CURRENT_DATE) AS PREV_MONTH , (ADD_MONTHS(PREV_MONTH, -12) +1) PREV_MONTH_LAST_YEAR;The ADD_MONTH Function perform date...

View Article

Update frequency of CurrentSpool in dbc.DiskSpace - response (4) by hobrob

Thanks for the query but running "update spool space for <user>;" threw up a syntax error:-"...expected something like a name or Unicode delimited identifier or an 'UDFCALLNAME' keyword between...

View Article

Correlated SubQuery needs Tuning.. INDEX and LENGTH functions causing...

Hi All I have two tables like below with sample data: ACCNT_TABLE    |   REF_TABLE   ID_COL            |     REF_COL    123                  |     Desc_123    100                  |     200_payout...

View Article


Correlated SubQuery needs Tuning.. INDEX and LENGTH functions causing...

PS: I can’t use Cross join !!Well, you don't call it a Cross Join, but it is a cross join, when you explain it you'll see a PRODUCT join. No matter how you rewrite it using a Correlated Subquery or a...

View Article

Update frequency of CurrentSpool in dbc.DiskSpace - response (5) by dnoeth

Hi Rob, the "update spool space ..." must be submitted from the updatespace utility not from a SQL client. You need access to the "Database Window" to do that.  Dieter

View Article


SQL Error in FROM clause: SQL Editor: Encountered B. Was expecting:...

I am experiencing writers block.  The second join has an error with AS B after the FROM clause: FROM PP_DISCOVERY_VIEWS.fact_payment AS A join (select * from PP_DISCOVERY_VIEWS.fact_payment where...

View Article

How know if an index is used? - response (8) by mybudy

I still do not know the answer ...

View Article


SQL Error in FROM clause: SQL Editor: Encountered B. Was expecting:...

Well, there's no alias after the Derived Table, no ON and no JOIN to B: FROM PP_DISCOVERY_VIEWS.fact_payment AS A JOIN ( SELECT * FROM PP_DISCOVERY_VIEWS.fact_payment WHERE A.ach_cntry_code = 'US' AND...

View Article

LT,WT,ET,UV tables - response (18) by abhijeetgupta29nov

Thanks for ur response. I just want to know how they are processing data i.e. how they are loading data.  Thanks, Abhijeet

View Article

Get Most Current Date - response (2) by ca8172

DNOETH, thanks for the update.  It appears that I didn't explain what I was needing very well, so I will try to do so this time, as when I tried the above query, it provided an overall MAX DATE to all...

View Article
Browsing all 14773 articles
Browse latest View live