Removing comma in a string - response (7) by uco
orreplace with CAST worked, thank you everyone
View ArticlePulling Primary/Foreign Key Relationships - forum topic by seanc
Hello All, I am currently working on pulling down metadata from a given Teradata database and have run into a problem. I have figured out how to pull all the tables/columns/views/stored procedures of a...
View ArticleAccess Rights required to execute a Function - response (1) by Raja_KT
Hi VP, Maybe you can try ALTER FUNCTION abcdefghi.HASH_MD5 EXECUTE NOT PROTECTED; Please let me know. Cheers, Raja
View ArticleWINCLI32.DLL is missing after installing java - response (1) by Raja_KT
Hi Cheeli, As a first start, I suggest you go through this link and validate against all those checks. Maybe you can find something to sort out your...
View ArticleMODE and FORMAT - TD Utilities. - forum topic by Raj kumar T
Hi Folks, Can anyone explain the significance of MODE and FORMAT in Utilities like Fast Export and Multi load ? And what are the various MODE and FORMAT are avilable at this end ? I have seen some...
View ArticleCertified Apache Hadoop Developer Class Room Training - forum topic by...
Hi, UNICOM is running Hadoop Developer Classroom Training in Bangalore , Delhi and Hyderabad. Dates: Hyderabad: 8-9-10th Jan 2014 Bangalore: 10-11-12th Feb 2014 Delhi: 26-27-28th Feb 2014 For more...
View ArticleMODE and FORMAT - TD Utilities. - response (1) by Raja_KT
In fastexport you can see the syntax as from manual: FORMAT FASTLOAD BINARY TEXT UNFORMAT MODE INDICATOR RECORD The FORMAT options apply...
View ArticleMODE and FORMAT - TD Utilities. - response (2) by dnoeth
There's a manual for each Load Utility which describes FORMAT and MODE in full detail.
View ArticleAccess Rights required to execute a Function - response (2) by dnoeth
This error indicates that the function was not found, it's not related to access right. Did you qualify the function, dbname.HASH_MD5('ABCD')? A UDF is only found when it's in SYSLIB, the current...
View ArticleMODE and FORMAT - TD Utilities. - response (3) by Raj kumar T
Thanks a bunch for your response raja and dnoeth. I had a chance to look at those manuals. and I found The default FORMAT is FASTLOAD. BINARY format is a two-byte integer, followed by data. TEXT format...
View ArticleAccess Rights required to execute a Function - response (3) by Raja_KT
Aha!!!!Thanks Dieter.
View ArticleMODE and FORMAT - TD Utilities. - response (5) by Raja_KT
Hi Raj, You have not shared your script. You have not shown the data. Have you tried with FORMAT FASTLOAD or even TEXT,VARTEXT MODE RECORD. Also you can try thus: select CAST( field1 || '|' ||field2...
View ArticleMODE and FORMAT - TD Utilities. - response (6) by dnoeth
Hi Raj, the "unidentified things" are binary data like INT, which are no readable text. You can simply CAST any datatype to a CHAR to be able to use TEXT format. But you didn't tell how the data...
View ArticlePulling Primary/Foreign Key Relationships - response (1) by Raja_KT
I hope any of these tables below can help you. DBC.All_RI_Children DBC.All_RI_Parents DBC.RI_Distinct_Children DBC.RI_Distinct_Parents You can analyze these table and see what you want to pull....
View ArticleSQL help - forum topic by todil
Hi gurus, I am trying to generate a sql based on this scenario. please suggest how. i have a table with credit card number, transaction date and amount and merchant. I want to find a creditcard number...
View ArticleSQL help - response (1) by dnoeth
SELECT card_number, merchant, EXTRACT(YEAR FROM trans_date) AS trans_year, EXTRACT(MONTH FROM trans_date) AS trans_month, trans_year * 12 + trans_month AS trans_ym, SUM(SUM(amount)) OVER (PARTITION BY...
View ArticleCreate back up tables using cursor - response (4) by mmanijay
Hi Raja, Thanks for your reply.I was on off .So unable reply to your queries. We have planned to automate the partition range.This ipartition range is different for different set of tables. They have...
View ArticleCreate back up tables using cursor - response (5) by mmanijay
This procedures needs to run once in a year.For example our max partition range is 201403.and we need to plan this before March 2014 and extend it till 201412.At the end of Dec this needs to be...
View ArticleCreate back up tables using cursor - response (6) by Raja_KT
Hi Mani, If you are not aware ,you can call a stored procedure from bteq. I am under the impression that you know how to create backup table and add partition. You have a look at the manual. It...
View Article