ALTER STATEMENT - IF THE TABLE HAVE MORE THAN ONE BILLION RECORDS - response...
You can have a look to the DNOETH's blog. It's very interesting http://developer.teradata.com/blog/dnoeth/2013/08/why-dont-you-use-alter-table-to-alter-a-table
View ArticleTeradata preferences for new connection profile type missing - response (12)...
I found the wizard! File > New Wizards > Other, then checkmark the box "Show All Wizards". A little tricky, but it's there. HOWEVER, no matter what connection I try via the wizard (either...
View ArticleI can't execute an SP that calls another SP inside - response (5) by Fred
For CREATE / REPLACE PROCEDURE, the CREATOR must have permission to execute any DML statements within the procedure (including CALL). But the OWNER (database in which the procedure is defined) must...
View ArticleTeradata preferences for new connection profile type missing - response (13)...
Steven, Glad you found it. We have resolved an issue with the execute options being disabled in our upcoming 15.12 release. Using the Tools>Execute All is causing the wrong SQL Editor. It should be...
View ArticleUnable to connect to the database using Teradata Studio Express. - response...
Akshay, Teradata Studio Express is meant for running queries and exporting result data. You will want to download our Teradata Studio product. It includes all the functionality of Studio Express, plus...
View ArticleFile Writer operator writing out 0 for decimal columns with precision greater...
I am trying to look up when this was fixed. Since it looks like several people are having issues, I need to know what version of TPT everyone on this thread is running.
View ArticleTeradata Studio 15.10.01.01 on Mac OS X -- Hangs - response (25) by firstcaptain
When I opened up the workspace there wasn't much there so I tried again ... and it seemed to work ... I am remote connecting via VPN so maybe there is a firewall issues in the office .. Thanks so much...
View ArticleCreating a Dynamic YoY Date Range in Case Statement for Current Quarter QTD -...
You can apply TRUNC & TO_CHAR like this: CASE WHEN date between TRUNC(CURRENT_DATE-1, 'Q') AND CURRENT_DATE-1 THEN TO_CHAR(CURRENT_DATE-1, '"Q"Q"_"yyyy') WHEN date between...
View ArticleOption "User Choice (includes DBC)" not available in Teradata Studio 15.11 -...
Hello: I installed Teradata Studio 15.11. For Data Source Explorer to list less objects, from Windows--Perferences--Teradata Datatool Preferences -- Data Source Explorer Load Preference, I try to...
View ArticleFile Writer operator writing out 0 for decimal columns with precision greater...
Ok, if the "issue" that we fixed is what I think, these are the releases in which the issue was resolved: 14.10.00.014 15.00.00.001
View ArticleInsert taking long - response (2) by krishna1985
Hi Dieter, thanks I will try to make all tables as multiset and will try to make another column as Primary Index. Thanks Sir..
View ArticleGrouping while combining Date and Hour - forum topic by mrjkirkpatrick
Hello, I couldn't find exactly this question among the great date/time posts on the forum. I have a date field (row_added_ts) with the format: "12/29/2014 6:34:42 PM" My end goal is to group 'cases' by...
View ArticleGrouping while combining Date and Hour - response (1) by dnoeth
The easiest way is to group by two columns:CAST(row_added_ts AS DATE), EXTRACT(HOUR FROM row_added_ts) You can also cast to a string, but your format will not allow correct...
View ArticleAster Management console (AMC) is not working for Aster Express - response...
I am also getting the same issue. I have followed all the step as per document. Could you please let me know how did you resolve the issue?
View ArticleDBC Diskspace, - response (4) by dnoeth
Wow, less than 1 percent for dbc, that's definitely way too low. What's the % perm space in use?
View ArticleTeradata block storage - forum topic by pandit
Hi All, This is my first post :). So pardon me in case of any mistake. I have been reading the teradata storage architecture in detail. Recently found very interesting article explaining how a row is...
View ArticleIP address based access to TD. - forum topic by Dinesh1975
Please Can anyone let me know how to implement IP address based access to TD.Forums: Connectivity
View ArticleSql to delete duplicates in Teradata - response (17) by ak.sabale@gmail.com
Hi...."How to remove duplicate more than one records from given table. table as tbl1 emp_id,emp_fname,emp_lname 1,a,b 2,a,b 2,a,c 3,c,b 3,f,h i want output like 2,a,c 3,c,b 3,f,h Thanks in Advance !
View ArticleGrouping while combining Date and Hour - response (2) by mrjkirkpatrick
Thank you, very helpful. Grouping by the two columns does seem easiest, though I'll try the other options as well.
View Article