Row Number and Select Distinct Query - forum topic by SR_Stage
Good morning TD community, I've been working on a writing a distinct query that returns as a single concatenated string (it has to be fed into a system that is expecting fixed-length field based on...
View ArticleIs there any way to handle single digit's in date? - forum topic by...
Hi All, I have a date "Mar 1 2013" which i want to load it into a table with date format as 'MMMBDDBYYYY' is there any way i can load this without adding a "0" before the 1 in the given date? i am...
View ArticleIs there any way to handle single digit's in date? - response (1) by dnoeth
In TD14 there's Oracle's TO_CHAR, which is a bit more flexible than TD's FORMAT :-) to_date('Mar 1 2013', 'mon dd yyyy') Dieter
View ArticleRow Number and Select Distinct Query - response (1) by dnoeth
DISTINCT is processed after ROW_NUMBER which creates unique values :-) You need to move the DISTINCT into a Derived Table: SELECT ROW_NUMBER(....), dt.* FROM ( SELECT DISTINCT ... FROM ...) AS dt...
View ArticleTMM Best Practice - forum topic by schachtw
I'm at a client site where TMM 2.01.05.32 will be evaluated. Currently, the data mapping process is comprised of a single excel spreadsheet that accommodates 3 versions of a given table. From that...
View ArticleRevoke User - response (2) by dins2k2
Hi wambli, DBC.LogonRules view has a column named LogonStatus which contains the flag whether user is granted (G) or revoked (R) logon access. This view uses information from real table DBC.LogonRuleTbl.
View ArticleTMM Best Practice - response (1) by ccurry
You can only map one object to another if they are both in the same project, so you would typically create separate data representations (DRs) for File, Stage and Base, then map File to Stage and map...
View ArticleWindows system, when use Teradata SQL Assistant and TSET connect to a...
I think something is missing from this question. I assume these are 2 completely unrelated statements: SQL Assistant gives an error message TSET gives an error message since you cant use TSET from...
View Articlealiased column is ambiguous in where clause - forum topic by matt.h
Is there a way to reference an aliased column so it doesn't throw a column is ambiguous error (without renaming the alias)? Example: Select coalesce(a.dob, b.birth_date) as dob From db.table1 a Join...
View ArticleTPT: system variables with result count - response (8) by TonyL
Can you set the TPT Update operator's TraceLevel attribute to 'ALL' in the TPT job script? Example: VARCHAR TraceLevel = 'ALL', Then, re-run the TPT job. Send me the TPT log.
View ArticleProblems using Teradata Parallel Transporter - response (5) by TonyL
Yes, the ErrorLimit applies to the case when the column data type is integer and the values are coming as varchar 'a', 'b', etc.
View ArticleNumeric overflow occurred during computation? - response (8) by paulxia39
Dieter: I do know this is ok and I have test it.But why? When cast to decimal(38,8),you say cast should be excuted after the multiplication. So, when cast to decimal(18,2), I think...
View ArticleI need remove '' of rows - forum topic by sbarrionuevo
Hi, I'm Sebastian and I need your help you. I have rows with ' ' data, for example: My table have 1 row of the name 'tx_name' and... in the name have:' Pepito'(in that case use trim for remove...
View ArticleWith Teradata Studio why does a timestamp(0) export with trailing .0 - forum...
Hello, Our organization has a need to export data internally and for customer deliverables. When using Teradata Studio Version 14.02.0.201302060329 to export columns with type of timestamp(0), the...
View ArticleAny best Training Centres you guys know in Hyderabad?? - response (39) by...
I Can recommend one of the Training Program's which i think is the best out there and provided by Manohar, i just took one of the Teradata Training Program started in May-2013 which i felt very...
View ArticleTeradata DBA Traninig in Hyderabad? - response (51) by mamatha_1268
I Can recommend one of the Training Program's which i think is the best out there and provided by Manohar, i just took one of the Teradata Training Program started in May-2013 which i felt very...
View ArticleLooking for urgent training on Teradata - response (1) by mamatha_1268
I Can recommend one of the Training Program's which i think is the best out there and provided by Manohar, i just took one of the Teradata Training Program started in May-2013 which i felt very...
View Articlealiased column is ambiguous in where clause - response (1) by Harpreet Singh
one other way: Select coalesce(a.dob, b.birth_date) as dob From db.table1 a Join db.table2 b (on a.field1 = b.field1) Where coalesce(a.dob, b.birth_date) = '1900-01-01'
View ArticleOBiee enquiry - forum topic by HenryMiguel
Is Performance scorecard and strategy tree are separate license product in OBIEE. Can someone suggest some document for beginners.Tags: OBIEE SelfForums: Tools
View Article