varchar to timestamp conversion - response (8) by sunny.j
its working thank you . i thought teradata 12 will able to convert the V2R timestamp format .
View ArticleUsing templates for operators provided in TPT - response (6) by nitindixit
Hi Here is the script - sample_country.tpt DEFINE JOB load_sample_country ( DEFINE SCHEMA countries_schema @LoadTargetTable; APPLY $INSERT @LoadTargetTable TO OPERATOR ($LOAD) SELECT * FROM OPERATOR...
View ArticleFastload issue - response (1) by dnoeth
FastExport defaults to MODE INDICATOR to deal with NULLs, but FastLoad doesn't. So either modify the FExp (if there are no NULLs): .EXPORT OUTFILE "fexp.data" FORMAT FASTLOAD MODE RECORD; or the...
View ArticleRoles - Profiles Best Practices - topic by monita_rb
Hi, What do you guys recommend, are the best practices on creating Roles and Profiles? Right now I have 9 different roles according to user's resposibilities, rights and environment, and clearly most...
View ArticleHow to identify tables that have been Block-level compressed using SQL -...
Hi, Please can some tell me how to identify tables that have been Block-level compressed using SQL. Hopefully from one of the DBC. <tables>. Note: I do not have access to Ferret tool or...
View ArticleUsing templates for operators provided in TPT - response (7) by feinholz
Ok, spoke with the engineer: Explicit schema association via the statement SELECT * FROM OPERATOR ($EXPORT(countries_schema)); is not supported in 13.10; they need to remove the schema...
View ArticleTeradata Architect/Developers/Data Modelers Ohio, must have Secret Clearance...
If you have recently worked on a Federal DoD (Department of Defense) project and have an active Secret Clearance or a NAC, please contact me asap. We have long term 4+ year projects in Ohio for you....
View ArticleRoles - Profiles Best Practices - response (1) by Qaisar Aftab Kiani
Roles are generally used to manage the access rights, while profiles are used to maintain user parameters / environment settings like spool space, account string etc. In your case I think Roles are...
View ArticleCase statement returning "Bad character in format or data...." - response (1)...
Seems like the column C_POL contains some characters data and in the case statement where you are casting the column to DECIMAL is causing the error because of the character data. Why don't you use the...
View ArticleCase statement returning "Bad character in format or data...." - response (2)...
you are right - I broke this case statement out case by case and the first line was the one sending me the message. I'm not really sure the syntax for this? is there an example anywhere? Thanks for...
View ArticleCase statement returning "Bad character in format or data...." - response (3)...
Ok, I am confused. Which syntax or example you are looking for?
View ArticleRoles - Profiles Best Practices - response (2) by pawan0608
Both serve the different purposes, but they are generally used to help manage Group of common users. Roles are used to manage access rights. You should have at least one role defined for each...
View ArticleHow to identify tables that have been Block-level compressed using SQL -...
I guess, DBC tables don't store that information.
View ArticleIssue during Conversion of varchar to Timestamp(0) - topic by KrishnaKulkarni
Hi, I am using TPT to load my table. I am facing an error in converting varchar to TimeStamp(0). The segment code which is giving the error is : read more
View ArticleQuery on Big Table sized approx 1 TB - topic by Khushbu
HI, I have a very big fact table named F_BASE_SALES_TRANS_LINE and the size as aprrox 1 TB. This table contains detailed dat at calendar_date, ITem_id, Store_num, TRANS_line_id... You can say the...
View ArticleDate Conversion - topic by Malleshkr
The date field is in the format 'DD-MON-YY'. But wherein the data which i receive is as below. EX: 12-Aug-12 1-Aug-12 The first if i handle using the substring the second value will be handled wrongly....
View ArticleDate Conversion - response (1) by pawan0608
Internally, Teradata does not store Date as in any speicifc Date format, it stores Date value as a four-byte signed integer value dervied based on (YEAR - 1900) * 10000 + (MONTH * 100) + DAY Format...
View ArticleDate Conversion - response (2) by Malleshkr
Yes right...But the source file has the data as mentioned above. Where "DD" is coming as 1 and not "01". And thats where am seeing the problem that my code is not working. Code sample:...
View Article