how to load the multiple tables from single file uisng TPT .. - response (1)...
Yes, TPT can do this. Check out the documentation for the use of the "CASE" syntax.
View ArticleMerge SQL Duplicate Key error - response (6) by KS42982
Can you make sure that contact_object_id is unique in both stg and pr tables by taking count(*) and count(distinct contact_object_id) ? Because MULTISET and UPI together do not make sense to me.
View ArticleDate and format - response (1) by KS42982
Are you running this query using teradata sql assistant ? sometime the answerset of it has default format. If you want to see the output in YY/mm/dd then I would say you should use CAST function in...
View Article"verbose" explain - response (6) by venkylingutla
Hi All, can anone help me what is the key word Spool Asgnlist in verbose explain plan. Thanks, Venky
View ArticleDate and format - response (2) by Harpreet Singh
Use bteq to run sel * from table and you will get in format mentioned in create table syntax. Harpreet
View ArticleSQL to pull data - response (3) by amfromhyd
Thank you for your response, Qaisar. Honestly, I didn't understand the solution you provided. if you could further explain, i would really appriciate it. Thanks much, Kumar
View ArticleSQL Query output from DBC table volatile - response (1) by KS42982
It is very hard to believe that ETL jobs in production keep creating/dropping permanent or global temporary tables. Volatile tables do not get written into data dictionary, so those should not come up...
View ArticleIncrease the size limit of teradata objects name from 30 characters to more....
You can refer to this post - http://forums.teradata.com/forum/database/teradata-table-naming
View ArticleSQL Query output from DBC table volatile - response (2) by vikramachandran
Thanks KS42982 for your valuable inputs and time. Will try this approach and get back with my findings.
View ArticleHow to Delete all objects in a particular database? - topic by usmans
I understand that before you can drop any database you have to delete all the objects it contains. I used the "help database database_name" command and it showed me that my particular database had 61...
View ArticleDelete or Drop a table if it already exists - response (11) by DataHead
Thanks Dieter, Do you mean you've posted the code to the the link? The link isn't working. So here's your code from a couple of answers ago. select 1 from dbc.TablesV where databasename = 'C917348' a...
View ArticlePlease provide help for ONE TO ONE MAPPING CODING and ONE TO MANY MAPPING...
Please help me, how to do coding for ONE TO ONE MAPPING & ONE TO MANY MAPPING... Greatly appreciated if provided with examples. Thanks in advance, Asha..
View Articlecoding for One-one mapping & one-many mapping - topic by ashamahi123
Please help me with coding for ONE - ONE MAPPING, ONE - MANY MAPPING i am new to this coding part,,please help me.. greatly appreciated if provided with examples. Regards, Asha
View ArticleIncrease the size limit of teradata objects name from 30 characters to more....
It is currently intended that Teradata 14.10 due out later this year will increase this limit. As always, this is not a promise, only the official release content documentation can describe the actual...
View ArticleTeradata Table Naming - response (12) by ToddAWalter
It is currently intended that Teradata 14.10 due out later this year will increase this limit. As always, this is not a promise, only the official release content documentation can describe the actual...
View ArticleProvisioning more space - response (3) by ToddAWalter
It is possible to add disk to an existing configuration if the physical configuration has room. The disks are physically added to the platform and the TVS subsystem is told about their existence. TVS...
View ArticleSQL to pull data - response (4) by sachin.sebastian
Kumar, Qaisar's query has hard-coded part that does not change across differnet tables. It generates one sql for each table in DBC.Tables (instead of creating the Sqls manually). You can then run the...
View ArticleGetting a unique value for VARCHAR field. - response (5) by suhailmemon84
Hi Dieter, You mentioned in your previous post that : "If you're not on TD13.10 simply cut & paste the source code and replace inBytes with PROC_DESCR" We're currently on 13.10 and we would like to...
View ArticleSpace in the database - response (1) by sachin.sebastian
Use the below sql to find out the remaining space in a Database: SELECT DatabaseName ,SUM(CurrentPerm)/1024/1024 AS USEDSPACE_IN_MB ,SUM(MaxPerm)/1024/1024 AS MAXSPACE_IN_MB ,SUM(CurrentPerm)/...
View ArticleDelete or Drop a table if it already exists - response (12) by Harpreet Singh
Peter, dbc.tablesV cannot be used on volatile tables. As Dieter already mentioned, please use logoff,logon approach or uncheck in SQLA> options to not stop on errors and use drop table; create...
View Article