Connect to Microsoft SQL Server from Teradata Studio 14.10 - forum topic by...
Is it possible to use the new Teradata Studio 14.10 to also connect to a Microsoft SQL Server? In the “New Connection Profile” wizard is listed “SQL Server”, selecting this brings up a menu for...
View ArticleBTEQ losing header comments of view definitions - response (1) by dnoeth
Hi Matthias, afaik you can't do that as-is in BTEQ. The only way i know is to move the comment after the REPLACE, e.g. REPLACE VIEW SampleDB.TestView AS /* Header comment: This is a test view. */...
View ArticleStarting TPUMP on Windows 2008 R2 fails - forum topic by rzenkert
Hi, I have installed Teradata utilities 14.10 on Windows 2008 R2 (64 bit). After I tried to start TPUMP i get the error msg: The application was unable to start correctly (0x000007b). Click OK to close...
View ArticleConnect to Microsoft SQL Server from Teradata Studio 14.10 - response (1) by...
You need to specify the full path names to the SQL Server jars in the "JAR List" tab of the New Driver Definition dialog. You'll need to remove the default jar file names (that don't have any path...
View ArticleRe: Delete Syntax in MLOAD - response (1) by Fred
In a standard BEGIN [IMPORT] MLOAD, the DELETE statement must specify values for the PI with equality condition, just as an UPDATE would. Or you can use BEGIN DELETE MLOAD and non-PI equality WHERE...
View ArticleConnect to Microsoft SQL Server from Teradata Studio 14.10 - response (2) by...
Ok, but next question. I search my Teradata folder in programs, but it seems that there are o *.jar files. From where can I download the needed Jar (or Zip) files to be able to use Teradata Studio to...
View ArticleError with Teradata connector for Hadoop with HCAT -> TD fastload - forum...
I have an HCategory table: CREATE TABLE src.t ( msgtype string , ts string , source string , msgclass int , msgtext string ) PARTITIONED BY (device_range string, device_id string); and a TD table:...
View ArticleConnect to Microsoft SQL Server from Teradata Studio 14.10 - response (3) by...
The JDBC jars are provided by Microsoft. Try their Microsoft JDBC Driver for SQL Server page at http://msdn.microsoft.com/en-us/sqlserver/aa937724.aspx
View ArticleStarting TPUMP on Windows 2008 R2 fails - response (1) by Ivyuan
Hi, TPump should be able to run on this platform. Please re-install all 32-bit packages (including dependencies, like TERAGSS, TDICU, TDCLI, TD Dataconnector(PIOM) etc and re-try. Thanks! --Ivy.
View ArticleLoad rows of data from teradata tables to mysql tables - response (2) by VJI
Hi Sudhansu, Thank you for response, would probe TPT further Thank you
View ArticleTPT 14.10 error with fifo input files - forum topic by datamo
Hi everyone!! I have several tpt scripts (which input is a fifo file) that used to run properly in tpt 13.0, now the system in which I'm working is upgrading to 14.10 and the scripts fails... the error...
View ArticleBTEQ exporting multiple files based on column value in a table - forum topic...
Hi Can anyone please give me some thoughts on this I have a scenario where I need to create multiple extract files based on a column values using bteq script and in unx environment. example table...
View ArticleFASTLOAD SCRIPT ISSUE - forum topic by Gans
I have an issue with my fastload script. It loads the data into my target table however the characters like '*' in my fixed width flat file need to be converted to null. My client requirement is that...
View ArticleHandle records in Mload ET table in TEXT mode - A column or character...
Greetings experts, I have fastexported a table in text mode and loaded the data in to target table using Mload in text mode (I am using 13.00 Demo version on windows 7). source/target table...
View ArticleFASTLOAD SCRIPT ISSUE - response (1) by ThomasNguyen
Hi Gans, Not sure about your question but if records in the input file, have a field with value '********' and you want to load it as a NULL, then you can use NULLIF clause in the DEFINE command. Thomas
View ArticleFASTLOAD SCRIPT ISSUE - response (2) by SuSeSi
Use NULLIF command in Fastload. Check Manual for details.
View ArticleHandle records in Mload ET table in TEXT mode - A column or character...
Try this: .logon localtd/tduser,tduser; .export data file="G:\Users\cheeli\Desktop\bteq_op\ et_itemppi_text.txt"; select hostdata from samples.et_itemppi_wodate; .export reset;
View ArticleFASTLOAD SCRIPT ISSUE - response (3) by Gans
trans_id (char (28) , NULLIF = '*' ), item_name (char (127), NULLIF ='*'), This is how i am defining my statement ... but still the table is loaded with '*******' from the fixed width file.
View ArticleFASTLOAD SCRIPT ISSUE - response (4) by feinholz
FastLoad does an exact match, byte-for-byte. It is not pattern matching. So, if you field will have 7 '*'s, then your NULLIF clause must have 7 '*'s. If each row will have a different number of them,...
View ArticleHandle records in Mload ET table in TEXT mode - A column or character...
Hi Sudhansu, That worked, thank you. I was expecting the data to be in unreadable format due to DATA mode. But I could see that the content is readable. Any thoughts on this? Also, why did the...
View Article