SQL Error on 'Create Table' - response (8) by VandeBergB
Hi! The "order by" isn't executed until the entire set has been generated. Sorting doesn't occur until the query execution has completed. I'm not sure about your statement that the "..all-amp...
View ArticleDifference between t sql and teradata sql - forum topic by susmita
Is the syntax same for both?Forums: Database
View ArticleSTDOUT output file locations - forum topic by rmline
quick and hopefully easy question I am trying to execute some BTEQ scripting and am using .SET ERROROUT STDOUT to capture any error messages. How do I designate the file that the error messages are...
View ArticleOreplace function throws error select failed.9134 - forum topic by M.M@TD
Hi, I am trying to replace a special character with CRLF in Teradata table using OReplace func but somehow its not working and I am getting "Select Failed.9134" error. The special Character may appear...
View ArticleUpdating 2nd row values with 1st row - response (1) by dnoeth
Hi Subbu, you just have to add this condition to the query i posted in: developer.teradata.com/blog/dnoeth/2013/07/how-to-spell-a-numeric-value-in-english-words#comment-65238 update tab as t set col3 =...
View ArticleCreate volatile table failed 3707 expected Unicode delimited identifier... -...
Hi- I'm trying to learn how to create a temporary table and am getting this error message CREATE TABLE Failed 3707: Syntax error, expected something like a name or a Unicode delimited identifier or an...
View ArticleRUN SQL QUERY - response (2) by laurastreng
ah HA! That helps ME tremendously! Glad I kept looking for an answer to a similiar situation! Thanks!!
View ArticleCreate volatile table failed 3707 expected Unicode delimited identifier... -...
The "derived table expression" in the FROM clause must have a name, e.g. and REQ.APRVD_INPAT_DAYS_NBR > 0 ) MyDT ) WITH DATA But the outer SELECT isn't adding any value. Why not simplify? CREATE...
View ArticleSTDOUT output file locations - response (1) by Fred
You use standard OS redirection on the command line to send STDOUT to a file, e.g. bteq <myScriptFile.txt >myOutputFile.txt
View ArticleSome Problem with Bteq !!!! - response (5) by mcsaravanan
Hello, I'm having the same issue here. were you able to resolve it? can you please help me here? Thank you, Saravanan
View ArticleCreating a new secondary index on table - response (10) by teradatauser2
Hi Abhijit, Could you elaborate your answer ? and share some query to find this out ? I am really struggling to get the index usage info do decide on suggesting PI changes If other also have any more...
View ArticleDeleting data from DBQLogTbl? - response (3) by teradatauser2
hi, We have a process of moving data from dbc dbql tables to dbql history tables. But , off late we are facing spece crunch on these history databases as well. There is a process of deleting data from...
View ArticleHow to install Teradata Express on Windows 7 64 bit machine? - response (3)...
Hi Teams, It would be helpfull if any one of tech folks could give a step wise procedure to install Teradata in our home windows 7 64 bit machine. Thanks & Regards Harish.K
View ArticleDeleting data from DBQLogTbl? - response (4) by teradatauser2
hi, Anyone, any help on this? -Thaanks !
View ArticleDeleting data from DBQLogTbl? - response (5) by VandeBergB
Purging the dbql tables to history is a very common task. How often you run the script and how much history you retain is generally dependent upon a combination of how busy your system is and what...
View ArticleSelecting groups whose member belongs to multiple groups - forum topic by...
Hi All, I have a below requirement: I have data like below with Group ID and Member ID. I want to extract both Group ID and Member ID details for which a member belongs to more than one group. For Eg:-...
View ArticleSelecting groups whose member belongs to multiple groups - response (1) by...
Sagar,Put your table name instead of in below query and run it.select * from where group_id in ( select group_id from where member_id in (select member_id from group by 1 having count(member_id) >1...
View ArticleSelecting groups whose member belongs to multiple groups - response (2) by...
give your table name after the from clause in above sql
View ArticleTeradata system dictionary Backup by Netvault - response (3) by MarkVYoung
You should also check to see if your dictionary job is being blocked by other running jobs. We see this quite often and our normal dictionary backup of 45 minutes can end up taking up 2-3 hours or even...
View ArticleSelecting groups whose member belongs to multiple groups - response (3) by...
Hi terasum, Thanks a lot for the solution. Is there any other simple way to achieve the same. Regards, Sagar
View Article