Convert string into date - response (1) by Kbos
You may try to cast the string value to date format... cast (string_value as date format 'YYYY/MM/DD') Since you have 4/6/2013 you could concatenate a zero (0) to the first character...and then apply...
View ArticleAbout renaming a column - response (4) by Kbos
Thanks Harpreet for your suggestion :) Thanks Chinmay :)
View ArticleProblems with dynamic creation of Volatile tables - response (11) by...
Hi, I have a question. I am running a create volatile table with on commit preserve rows followed by 2 insert into statements. Select * returns the 2 entered rows on my machine and login whereas the...
View ArticlePatient Census by hour of day - forum topic by esr128
I have a horizontal patient data set. In order words a patient can be admitted to a floor, transfer in / out of a floor, and be discharged. Each of those events are a row of data for each patient. I...
View ArticleProblems with dynamic creation of Volatile tables - response (12) by Shelley
Volatile tables and their data are only available to the session that creates them. They are not available to other sessions. Your friend needs to run the create volatile table (including the on commit...
View ArticleTeradata SW - forum topic by jagadishecs
Any good training institute to learn teradata.Forums: Database
View ArticlePatient Census by hour of day - response (1) by dnoeth
Your narration sounds familiar, it's a variation of a generic problem, a count over a time series :-) To solve it, you have to elaborate on details and expected result set. One row for each point in...
View ArticleTeradata SW - response (1) by Kbos
I dont know where you are located so I cannot tell you a good Institute, but I suggest you to check some manuals by going to http://www.info.teradata.com/ it may help you
View ArticleTeradata SW - response (2) by amilineni.rajesh
Want to know the importance of Tera data software
View ArticleCreating a Soft RI - forum topic by taruntrehan
Hi All, I have to implement a soft ri in one of my project. Following are the tables in PER_DATA: person_mst with columns p_num bigint p_dt date p_status char(1) composite key is defined on columns...
View ArticleAlter an Existing PPI - forum topic by taruntrehan
Hi All, I have the following table defined : person_car_dtl p_num bigint p_dt date p_car_num varchar(100) primary index (p_num) PARTITION BY RANGE_N(p_dt BETWEEN DATE '2002-01-01' AND DATE...
View ArticleAlter an Existing PPI - response (1) by taruntrehan
Figured out the sytax and was able to alter PPI using the following command : alter table person_car_dtl MODIFY PRIMARY INDEX (p_num) ADD RANGE BETWEEN DATE '2014-01-01' AND DATE '2021-12-31' EACH...
View ArticleTeradata Query Director - forum topic by Kishore_1
In a dual active system, how does Teradata Query Director handle the routing of user sessions from primary to secondary during load balancing or production failover scenario if the user passwords are...
View ArticleCreating a Soft RI - response (2) by msk.khurram
Hi, To create references to existing tables, a REFERENCES privilege is needed. use one of the following:GRANT REFERENCES ON person_mst TO xyz; /* On all columns */GRANT REFERENCES (p_num,p_dt) ON...
View ArticleNeed more information about the temporary data retrival of TERADATA views -...
If you would need materialization, then you could use either join indexes, or insert-select into regular tables (both use perm space).
View Articletraining - forum topic by rajesh1983
any institutes to learn teradata in hyderabad Forums: Database
View ArticleGetting error - 3134 The request was aborted by an ABORT SESSION command -...
Hi We are getting below error while running a insert query 3134 The request was aborted by an ABORT SESSION command" Below are few more details1.The session is not getting aborted by TASM or...
View ArticleVariable Object Name in Dynamic Cursor - forum topic by thompsonhab
Hello, I am trying to parameterize on object referenced in my dynamic cursor. Let's say I have a table in three different databases called AuditLogs that I want to dynamically query the database to be...
View ArticleVariable Object Name in Dynamic Cursor - response (1) by thompsonhab
I think I figured it out the second I hit the submit button. Change from: SET SqlStr = 'SELECT count(*) FROM '|| '?' || '.AuditLogs '; To SET SqlStr = 'SELECT count(*) FROM '|| DBName || '.AuditLogs ';
View Article