﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Teradata Forums / Drivers and UDFs / Teradata  </title><generator>InstantForum.NET v4.1.4</generator><description>Teradata Forums</description><link>http://www.teradata.com/teradataforum/</link><webMaster>info@teradata.com</webMaster><lastBuildDate>Sat, 07 Nov 2009 18:23:50 GMT</lastBuildDate><ttl>20</ttl><item><title>SSIS 2008 Vs Teradata Via .NET Driver</title><link>http://www.teradata.com/teradataforum/Topic17239-11-1.aspx</link><description>Hi,I am trying to pull somedata from Teradata 12 by SSIS 2008 using .NET provider for Teradata 13...02 on 64Bit Windows Server.I can save and add connection managers (and also "Test Connection" was successful) but when i try to execute my package, it immediately fails by giving the error below:Here is the output window for SSIS Package:------------------------------------------------SSIS package "Import stores.dtsx" starting.Information: 0x4004300A at Stores, SSIS.Pipeline: Validation phase is beginning.Error: 0xC0047062 at Stores, ADO NET Source 1 [9891]: Teradata.Client.Provider.TdException: [.NET Data Provider for Teradata] [115009] Message truncation error, not all data was received.   at Teradata.Client.Provider.WpTcpTransport.ReadLanHeader(Buffer buffer, Int32 timeout, Int32 readBytes)   at Teradata.Client.Provider.WpTcpTransport.Receive(Buffer buffer, Int32 timeout)   at Teradata.Client.Provider.WpSession.Receive(Buffer buffer, Int32 timeout)   at Teradata.Client.Provider.WpMessageManager.Receive(Int32 timeout)   at Teradata.Client.Provider.WpLogonManager.Action()   at Teradata.Client.Provider.WpSession.ManagerAction(WpMessageManager manager, Stopwatch watch, Int32 connectionTimeout)   at Teradata.Client.Provider.WpSession.Open(Int32 connectionTimeout, String password)   at Teradata.Client.Provider.WpSession.Open(Int32 connectionTimeout)   at Teradata.Client.Provider.Connection.Open(UtlConnectionString connectionString, UInt32 timeout)   at Teradata.Client.Provider.ConnectionPool.CreateConnection(UInt32 timeout)   at Teradata.Client.Provider.ConnectionPool.GetConnectionFromPool(Object owningObject)   at Teradata.Client.Provider.ConnectionFactory.GetConnection(Object owningObject, UtlConnectionString connStr)   at Teradata.Client.Provider.TdConnection.Open()   at Microsoft.SqlServer.Dts.Runtime.ManagedHelper.GetManagedConnection(String assemblyQualifiedName, String connStr, Object transaction)   at Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSConnectionManager100.AcquireConnection(Object pTransaction)   at Microsoft.SqlServer.Dts.Pipeline.DataReaderSourceAdapter.AcquireConnections(Object transaction)   at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostAcquireConnections(IDTSManagedComponentWrapper100 wrapper, Object transaction)Error: 0xC0047017 at Stores, SSIS.Pipeline: component "ADO NET Source 1" (9891) failed validation and returned error code 0x80004005.Error: 0xC004700C at Stores, SSIS.Pipeline: One or more component failed validation.Error: 0xC0024107 at Stores: There were errors during task validation.SSIS package "Import stores.dtsx" finished: Failure.The program '[6492] Import stores.dtsx: DTS' has exited with code 0 (0x0).----------------------------------------------------------Anyone has experienced an error like before? I would appreciate any help coz i could'nt find any documentation in Teradata site for this error explaination.Best RegardsOnur</description><pubDate>Wed, 04 Nov 2009 12:12:47 GMT</pubDate><dc:creator>offshoot</dc:creator></item><item><title>ODBC driver for Windows Itanium 64-bit OS</title><link>http://www.teradata.com/teradataforum/Topic17052-11-1.aspx</link><description>I need to install a Teradata ODBC driver to run on a Windows Server 2003 Datacenter Edition OS.  Our Teradata databases are currently v12.  I see Windows IA64 ODBC drivers on the downloads page, but they are in TTU 8 packages.  Have all Teradata 64-bit drivers now been packaged together (no longer singling out Itanium 64-bit)?  Does the driver I need exist?</description><pubDate>Wed, 07 Oct 2009 09:00:15 GMT</pubDate><dc:creator>mmcgaha</dc:creator></item><item><title>Teradata Teradata SQL Assistant client installation error in x64 windows system</title><link>http://www.teradata.com/teradataforum/Topic16921-11-1.aspx</link><description>Hi,I have installed Teradata SQL Assistant client in Microsoft Windows server 2003 R2 Enterprise x64 Edition.When I am trying to connect through SQL Assistant it is giving the below error:160: Specified driver could not be loaded due to system error 193 (Teradata).Please help me to resolve this.Thanks in Advance,Santosh</description><pubDate>Thu, 24 Sep 2009 11:28:06 GMT</pubDate><dc:creator>santoshmagapu</dc:creator></item><item><title>Query about SESSIONS parm for JDBC Driver</title><link>http://www.teradata.com/teradataforum/Topic16914-11-1.aspx</link><description>Hi,I am exploring the various options to speed up the data loading to a Teradata database using JDBC Driver.from the description of SESSIONS parm, it looks like, it is applicable to only FastLoad and FastExport mode of operation.Is that interpretation correct? or does it happen that number of sessions can speed up the data loading over normal JDBC mode ?Thanks,Akshay</description><pubDate>Wed, 23 Sep 2009 11:13:51 GMT</pubDate><dc:creator>akshayku</dc:creator></item><item><title>Query Timeout again....</title><link>http://www.teradata.com/teradataforum/Topic16965-11-1.aspx</link><description>Hello,    I am creating a reporting application that requires me to connect to a Teradata DW. know on small queries it works great but when it comes to the larger ones is where i have the issues. I know the default is 30 Sec but nothing i do seems to fix the problem. I have tried the TDcommand.connection timeout but it doesn't seem to like me it say the connection does exist even though i just pull info from it on a small query here is a sample:        Dim ds As System.Data.DataSet = New System.Data.DataSet        Dim OConn As Teradata.Client.Provider.TdConnection = New TdConnection()        Dim da As Teradata.Client.Provider.TdDataAdapter        Dim sql1 As String = "select names from empolyees"        OConn.ConnectionString = "Data Source=Teradatatest.net;User ID=123456;Password=teradata;"        da = New Teradata.Client.Provider.TdDataAdapter(sql1, OConn)        OConn.Open()        Dim cmd As Teradata.Client.Provider.TdCommand = New Teradata.Client.Provider.TdCommand        cmd.CommandTimeout = 0  &amp;lt;- errors here "Connection doesn't exist"        da.Fill(ds)        Me.GridView1.DataSource = ds        Me.GridView1.DataBind()as you can see above i am running a query against the TDW and filling a DS which i attach to a Gridview so i can make sure its working. my questions are.1) what am i doing wrong above? 2) can i set the Teradata connection/query timeout another way? as i would rather create the dataset files in VS gui so i can attached to my control instead of coding everything.thanks,Matt</description><pubDate>Mon, 28 Sep 2009 16:47:36 GMT</pubDate><dc:creator>mwoodall</dc:creator></item><item><title>Error while loggin in Teradata Demo version</title><link>http://www.teradata.com/teradataforum/Topic14772-11-1.aspx</link><description>Hi ,I Installed teradata demo version 12. first time when I started SQL assistant it got connected with error History database not set.I uninstall and then agin installed teradata.But now I am not able to connect to database thriugh SQL assistant.It gives following error.ODBC HY000:  Major Status=0x04bd Minor Status=0xe0000007-Success/Continue neededODBC HY000:  Major Status=0x04bd Minor Status=0xe0000007-loadtdgss could not load the tdgss library.ODBC HY000:  Cannot find terasso library.ODBC 28000:  Not enough information to log onPleas ehelp me with this problem.ThanksVarun</description><pubDate>Sun, 15 Mar 2009 08:20:03 GMT</pubDate><dc:creator>varun marolia</dc:creator></item><item><title>Date formatting issues - maybe new ODBC</title><link>http://www.teradata.com/teradataforum/Topic16826-11-1.aspx</link><description>We migrated to a new production Windows ETL server and a new ODBC version 3.01.00.06. There was no change to the d/bTeradata: V2R.05.01.02.43.We now have a job that is returning current_date in a different format and we do not understand why.Until today we could compare a date from a table to the current_date but now the log is showing a new format from the SQL statementCAST(Current_Date as CHAR(10)) AS Actual_DtLOG: Extracted Current_Dt:2009-09-14 Actual Date: 09/09/14   -   Extracted Current_Dt Does NOT EQUAL Actual_DtWe run the select in SQL Assistant and see the same format as the script outputselect current_date returns 	09/14/2009select current_date (format 'yyyy-mm-dd') returns 09/14/2009select CAST(Current_Date as CHAR(10)) AS Actual_Dt returns 09/09/14  What can we do to get the format to come back as 2009-09-14.</description><pubDate>Mon, 14 Sep 2009 18:33:14 GMT</pubDate><dc:creator>Michele</dc:creator></item><item><title>Trusted Connection in .Net data provider Driver</title><link>http://www.teradata.com/teradataforum/Topic16782-11-1.aspx</link><description>Hi,  I a trying to connect to Teradata using Teradata.Client.Provider driver. When I provide user name and password it connects without any problem, but I want to connect to the database using my OS account. I have my access to the Data base from OS account. I specify Integrated security = YES if I wish to connect to oracle using my OS account. I want to know if I can do same here. Thanks</description><pubDate>Tue, 08 Sep 2009 02:17:59 GMT</pubDate><dc:creator>MuruganMohan</dc:creator></item><item><title>ODBC characters tarnslation issue</title><link>http://www.teradata.com/teradataforum/Topic16747-11-1.aspx</link><description>Hi ,I'm using ODBC driver 3.04.00.00 for connecting Teradata V12 database from Siebel 7.8.2 application. I could able to retrieve the data but I'm not able getting the Chinese characters instead of English Characters.The Siebel application is on Solaris SPARC machine.Below is the odbc.ini file configurationDriver=tdata.soDescription=NCR 3600 running Teradata V1R5.2DBCName=TDDEVLastUser=Username=Password=Database=DefaultDatabase=Is there anything missing in above file?Any help/thoughts will be appreciated.ThanksSiva.</description><pubDate>Thu, 03 Sep 2009 18:55:50 GMT</pubDate><dc:creator>tsnr</dc:creator></item><item><title>Trying to set up ODBC connection</title><link>http://www.teradata.com/teradataforum/Topic4460-11-1.aspx</link><description>I've been trying to set up the ODBC connection for Teradata while using the program Advanced Query Tool.  I've already downloaded the latest driver and installed it on the computer.  When I go to add a new system data source and click on teradata, it gives me the following error message: "Unknown error occurred in terasso library."&lt;br&gt;&lt;br&gt;Then it pulls up the window that allows me to enter information such as name, description, Teradata Server Info, Default database, Username, Password, and Account String.  After entering this information, I get another error message: "Unable to write Accountstring into private profile."&lt;br&gt;&lt;br&gt;Does anyone have any ideas?</description><pubDate>Wed, 28 Jun 2006 12:41:14 GMT</pubDate><dc:creator>Sociodude</dc:creator></item><item><title>Oracle Transparent Gateway</title><link>http://www.teradata.com/teradataforum/Topic16618-11-1.aspx</link><description>Hi all , I want to know about  . I have a Little Information that this Actually helps us to connect Oracle from TD. If my Info is true.. Please help me with the process of Connecting to oracle and laod data into one of the tables there.Please help me with this as iam in bad need of this Information.</description><pubDate>Fri, 21 Aug 2009 02:48:28 GMT</pubDate><dc:creator>Ansu</dc:creator></item><item><title>ODBC character set tranlation problem</title><link>http://www.teradata.com/teradataforum/Topic16072-11-1.aspx</link><description>I have been successfully extracting non-ASCII characters from Teradata V2R6 on Windows using the ODBC 3.2.0.1 driver with the session character set UTF8.  After upgrading to Teradata 12 and ODBC v12 all non-ASCII characters are getting corrupted even though the character set in the ODBC DSN is set to UTF8.  Choosing UTF16 has the same problem.  The problem occurs back to at least ODBC 3.4.0.1 and it makes no difference whether I connect to Teradata 12 or V2R6.The ODBC 12 user guide says that "Teradata UTF8 and UTF16 session character sets on Windows work with the Translation DLL selected by the Translation DLL=  keyword".  I assume that refers to an entry in the odbc.ini file, but it doesn't describe what the options are.  There are also fields in the ODBC DSN for "Translation DLL Name" and "Translation Option", but the user guide doesn't say what DLL to use.Is the translation DLL included in the ODBC installation?  If not, where do I find one to translate to UTF8?Thanks.David</description><pubDate>Tue, 07 Jul 2009 12:27:39 GMT</pubDate><dc:creator>David57</dc:creator></item><item><title>JDBC cannot get the result of select</title><link>http://www.teradata.com/teradataforum/Topic16159-11-1.aspx</link><description>I used preparedStatement to select the data, but I was told cannot find the table object and in fact, the object is exist.    Anybody have the same problem？</description><pubDate>Tue, 14 Jul 2009 01:46:13 GMT</pubDate><dc:creator>tomato</dc:creator></item><item><title>TD server connections</title><link>http://www.teradata.com/teradataforum/Topic16054-11-1.aspx</link><description>The TD server is in France.We are not able to connect to Teradata server using SQL Assistant  from India . People who are in France are able to connect it. None of them from India are able to connect to it .   But from India , we are able to connect to the TD database in Unix  -  ie, with a Bteq . Could you please let  us  know as to what could be the problem with SQL Assistant .</description><pubDate>Mon, 06 Jul 2009 11:51:56 GMT</pubDate><dc:creator>soujanya.kota</dc:creator></item><item><title>not able to connect server</title><link>http://www.teradata.com/teradataforum/Topic15872-11-1.aspx</link><description>i have installed teradata software.Terada server is running correctly but not able to connect to the server from any of the client tools bteq/sqlassistant.Terdata V2R5 Version 5.0Sqlassistant 6.1.0Operating system windows 2003</description><pubDate>Sat, 20 Jun 2009 00:33:54 GMT</pubDate><dc:creator>Praneet Kulkarni</dc:creator></item><item><title>Not able to connect to Teradata on Windows from Linux box</title><link>http://www.teradata.com/teradataforum/Topic16028-11-1.aspx</link><description>Hi Experts Background: Datastage in RHEL 64 bit, Teradata Demo 12.0 in Windows xp and we have Installed Odbc Driver for Teradata( tdodbc_Linux_X8664.12.00.00.01.rpm ) also Configured ODBCiniAim : To connect teradata in Windows Xp through datastage in linux .Issue:  when we are  trying to connect teradata SQL from datastage in  Linux machine using teradata stage it is not connecting. Also we tried to connect teradata SQL from linux using isql command . But we are getting the error message .[ISQL]ERROR: Could not SQLConnectPlease guide me to how to proceed .. Thanks &amp; RegardsJoe</description><pubDate>Fri, 03 Jul 2009 07:47:26 GMT</pubDate><dc:creator>jj40191</dc:creator></item><item><title>PreparedIndicProtocol incompatible with PreparedIndicMultiPartProtocol</title><link>http://www.teradata.com/teradataforum/Topic15877-11-1.aspx</link><description>Hi,I am getting this exception when trying to execute a batch with Teradata JDBC PreparedStatement. Is there anything that I can change the way I create PreparedStatement or something?Thanks,com.ncr.teradata.jdbc_4.statemachine.PreparedIndicProtocol incompatible with com.ncr.teradata.jdbc_4.statemachine.PreparedIndicMultiPartProtocol	java.lang.ClassCastException com.ncr.teradata.jdbc_4.statemachine.PreparedIndicProtocol incompatible with com.ncr.teradata.jdbc_4.statemachine.PreparedIndicMultiPartProtocol|    at com.ncr.teradata.jdbc_4.statemachine.PreparedBatchStatementSendState.initSubclassParcels(PreparedBatchStatementSendState.java:94)|    at com.ncr.teradata.jdbc_4.statemachine.StatementSendState.action(StatementSendState.java:78)|    at com.ncr.teradata.jdbc_4.statemachine.PreparedBatchStatementSendState.action(PreparedBatchStatementSendState.java:53)|    at com.ncr.teradata.jdbc_4.statemachine.StatementController.runBody(StatementController.java:100)|    at com.ncr.teradata.jdbc_4.statemachine.PreparedBatchStatementController.run(PreparedBatchStatementController.java:58)|    at com.ncr.teradata.jdbc_4.Statement.executeStatement(Statement.java:286)|    at com.ncr.teradata.jdbc_4.PreparedStatement.executeBatch(PreparedStatement.java:114)|    at com.ncr.teradata.jdbc_3.ifjdbc_4.TeraLocalPreparedStatement.executeBatch(TeraLocalPreparedStatement.java:326)|at ....preparedStatement.executeBatch()</description><pubDate>Mon, 22 Jun 2009 07:45:15 GMT</pubDate><dc:creator>akshayku</dc:creator></item><item><title>Teradata database size</title><link>http://www.teradata.com/teradataforum/Topic15886-11-1.aspx</link><description>Hello evrybody,                    Can i know the approximate size of teradata base currently using...?.</description><pubDate>Mon, 22 Jun 2009 16:37:39 GMT</pubDate><dc:creator>sangeeth</dc:creator></item><item><title>The provider reported an unexpected catastrophic failure</title><link>http://www.teradata.com/teradataforum/Topic15733-11-1.aspx</link><description>Just updated my OLEDB driver to TDOLEDB_Provider_windows_i386.12.00.00.01. Recreated the Linked Server, I can see all my Teradata objects. However, a simple scripting request of one of my tables initially returned an out memory error. Then, any other attempt to run a simple query returns:...The provider reported an unexpected catastrophic failure.sample queriesselect * from openquery(mylinkedserver, 'select * from mydb.mytable');select * from mylinkedserver..mydb.mytableAny hints or past forum entry?</description><pubDate>Wed, 10 Jun 2009 09:38:19 GMT</pubDate><dc:creator>camilo_mctorres</dc:creator></item><item><title>Issue with Teradata ODBC installation on solaris Sparse Root zone.</title><link>http://www.teradata.com/teradataforum/Topic15129-11-1.aspx</link><description>I want to install Teradata ODBC driver (tdodbc__solaris_sparc64.03.06.00.06) on a Solaris (10) Small zone - (also known as a "Sparse Root zone"). It install successfully in the Global zone but fail when continuing for the small zone (QDAP0073A). It fails with the first dependency component (TeraGSS).[b]Server info:[/b] uname -aSunOS QDAP0073A 5.10 Generic_137111-01 sun4u sparc SUNW,Sun-Fire-880 isainfo -kv64-bit sparcv9 kernel modules[b]The ERROR:[/b].....Installation of   was successful.## Installing package TeraGSS in zone QDAP0073A Teradata GSS client package(Solaris/SPARC) 06.02.00.00Using   as the package base directory.## Processing package information.## Processing system information.   71 package pathnames are already properly installed.Installing Teradata GSS client package as  TeraGSS## Installing part 1 of 1.[ verifying class  none ]## Executing postinstall script./var/sadm/pkg/TeraGSS/install/postinstall: /usr/teragss/solaris-sparc/06.02.00.00/version: cannot createpkginstall: ERROR: postinstall script did not complete successfullyInstallation of TeraGSS on zone QDAP0073A failed.Any thoughts, ideas, suggestions would be appreciated.</description><pubDate>Fri, 17 Apr 2009 14:11:37 GMT</pubDate><dc:creator>YvanL</dc:creator></item><item><title>odbc/ sql server linked server connection problem</title><link>http://www.teradata.com/teradataforum/Topic15639-11-1.aspx</link><description>We are using the SQL Server 2000 linked server functionality (openquery) from stored procedures to get data from teradata through the odbc driver 3.06.We tried an upgrade to TTU 12.0 and no relief.We can duplicate this by running stored procedures in rapid succession that access this linked server.We get this error:Server: Msg 7399, Level 16, State 1, Line 1OLE DB provider 'MSDASQL' reported an error. Authentication failed.[OLE/DB provider returned message: [NCR][ODBC Teradata Driver] Not enough information to log on][OLE/DB provider returned message: [NCR][ODBC Teradata Driver] Cannot find a compatible package match between client and gateway in terasso library.][OLE/DB provider returned message: [NCR][ODBC Teradata Driver] Major Status=0x04b6 Minor Status=000000-The operation completed successfully.][OLE/DB provider returned message: [Microsoft][ODBC Driver Manager] Invalid connection string attribute][OLE/DB provider returned message: [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed][OLE/DB provider returned message: [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed][OLE/DB provider returned message: [NCR][ODBC Teradata Driver] Major Status=0x04b6 Minor Status=000000-No Routine error/No calling error]OLE DB error trace [OLE/DB Provider 'MSDASQL' IDBInitialize::Initialize returned 0x80040e4d:  Authentication failed.].Anyone have any ideas?We can't seem to get a trace of a failure which isn't helping much. We can trace ODBC when connecting via vb script but not through linked server.</description><pubDate>Wed, 03 Jun 2009 14:55:25 GMT</pubDate><dc:creator>garrett_s</dc:creator></item><item><title>Conflict between Teradata and Sybase</title><link>http://www.teradata.com/teradataforum/Topic15538-11-1.aspx</link><description>Is there someone who can help me solve this problem, I have ODBC driver conflict between Teradata and Sybase.On a Solaris SPARC 32-bit ODBC driver 3.5 we did not have this conflict and to support the data type BIGINT it took to install ODBC 3.6 but since I have this conflictI have traces of the following errors:05/20/2009 10:44:52.292 [E] [TABLE ACC] Erreur de la base de données (5) : SQL call failed.Code fournisseur BDD : -100Message fournisseur BDD : 08001Code supplémentaire : 1Message supplémentaire : [Sybase][ODBC Driver][Adaptive Server Anywhere]Database server not found05/20/2009 10:44:52.293 [E] [TABLE ACC] Erreur de la base de données (5) : SQL call failed.Message fournisseur BDD : 08003Code supplémentaire : 1Message supplémentaire : [Sybase][ODBC Driver]Connection not open05/20/2009 10:44:52.293 [E] [TABLE ACC] DATA_SOURCE_CONNECT à KENOBI(KENOBI) comme LB_CMPINT : ÉCHEC.: CODE 11518: Erreur de connexion à base de donnéeAbdelThanks</description><pubDate>Wed, 27 May 2009 11:11:57 GMT</pubDate><dc:creator>Teradata1</dc:creator></item><item><title>Connect Teradata to MS Access</title><link>http://www.teradata.com/teradataforum/Topic15530-11-1.aspx</link><description>Hi - I am trying to Connect Teradata to MS Access in VBA.  I am using ADODB connection string but I haven't been able to establish the connection.      oConn.Open "Provider= Teradata;" &amp; _           "DBCName= P5450;" &amp; _           "Database= MWAD_USERDB;" &amp; _           "Uid= Username;" &amp; _           "Pwd= password"Which drivers should I install to connect MS Access to Teradata server?Thanks!Bryce</description><pubDate>Tue, 26 May 2009 15:19:39 GMT</pubDate><dc:creator>BryceMT</dc:creator></item><item><title>DBD::Teradata (Perl Driver) Problem with MLOAD work tables</title><link>http://www.teradata.com/teradataforum/Topic15534-11-1.aspx</link><description>Hello to all,I'm trying to use module DBD::Teradata as shown:[font=Courier New]my $ctldbh = DBI-&amp;gt;connect(     'dbi:Teradata:'.$server.';database=jedi_kbo_db'     , $username     , $password     , {  RaiseError   =&amp;gt; 0        , PrintError   =&amp;gt; 0        , tdat_lsn     =&amp;gt; 0         , tdat_no_cli  =&amp;gt; 'NO'               , tdat_mode    =&amp;gt; 'TERADATA'         }                          ) || die "NON CONNESSO !!!";my $total = $ctldbh-&amp;gt;tdat_UtilitySetup(    {        Utility      =&amp;gt; 'MLOAD',        Sessions     =&amp;gt; $sesscount,        SQL =&amp;gt; [			"MARK DUPLICATE ROWS;MARK MISSING ROWS;             INSERT INTO jedi_kbo_db.T_TEST_T VALUES( :col1 );",        ],        SourceFields =&amp;gt; 'USING (col1 varchar(30))',              LogTables =&amp;gt; {            'jedi_kbo_db.T_TEST_T'    =&amp;gt; [ qw(T_TEST_T_wt  T_TEST_T_et  T_TEST_T_uv) ],            },        Source       =&amp;gt; "VARTEXT '|' ".$filenameF ,        MP =&amp;gt; 1 ,    });print "ORRORE!!!!:"."str:".$ctldbh-&amp;gt;errstr.""."err:".$ctldbh-&amp;gt;err.""    unless ($total &amp;&amp; ($total &amp;gt; 0));[/font]And the program give the message:ORRORE!!!!:str:Failure 3807: Object 'T_TEST_T_uv' does not exist. on Statement 1.err:3807Any idea?I think Mload Should create and Drop T_TEST_T_uv , Shouldn't?Thanks in advanceGiulio</description><pubDate>Wed, 27 May 2009 06:50:48 GMT</pubDate><dc:creator>giulio bertani</dc:creator></item><item><title>Cannot find terasso library</title><link>http://www.teradata.com/teradataforum/Topic14955-11-1.aspx</link><description>Hi, Since I installed "Teradata Tools and Utilities v12.1 (TTU v12)". I can't use queryman anymore. The error message "Cannot find terasso library", not enough information to log onAnybody knows how to fix it? Thanks</description><pubDate>Wed, 01 Apr 2009 14:56:40 GMT</pubDate><dc:creator>nichunchun</dc:creator></item><item><title>how to search for char ' and remove from the string "venkat's house"</title><link>http://www.teradata.com/teradataforum/Topic15454-11-1.aspx</link><description>Hi,Please let me know how to search for the character ' in a string and remove it.data we have in teradata is "venkat's house"i neet to remove ' and convert it into "venkts house".please help me in this regardemail: venkatesh.gubba@gmail.com</description><pubDate>Mon, 18 May 2009 05:32:51 GMT</pubDate><dc:creator>Venkatesh G</dc:creator></item><item><title>How to use cursors in UDF</title><link>http://www.teradata.com/teradataforum/Topic15110-11-1.aspx</link><description>We are converting MS -SQL code to Teradata. In my SQL code we have a view which calls a function to calculate the column value. This function uses a cursor on one of the tables.CREATE VIEW vw_1ASSELECT                  tab1.col1,                  tab2.col2,                  tab1.col3,                  calc_func(tab1.col2, tab1.col3, tab1.col4)FROM                  tab1INNER JOIN   tab2ON              tab1.col1 = tab2.col1;[b]Function calc_func calls a cursor on tab3 and calculates the return value based on input parameters.[/b]Can I call cursor in a UDF. I could not find it anywhere on the web or is there any other options like( calling stored procedure from the function)Thanks  </description><pubDate>Thu, 16 Apr 2009 11:16:57 GMT</pubDate><dc:creator>vshar</dc:creator></item><item><title>.NET Provider performance</title><link>http://www.teradata.com/teradataforum/Topic11803-11-1.aspx</link><description>Is there anyway to get the .NET provider to perform anywhere near as well as fastload for loading data?  We have several applications, in c#, that need to monitor directories and then load those files into a Teradata warehouse. I would prefer not to have to shell out to call fastload. Currently I am reading/parsing the file into a dataset and then using a dataadapter to update the table. Performance is no where near what fastload accomplishes.  Does anyone have any suggestions/tips/tricks as to how to improve the .NET provider performance?R</description><pubDate>Wed, 11 Jun 2008 10:11:27 GMT</pubDate><dc:creator>Ron Luebke</dc:creator></item><item><title>Teradata JDBC fastload hangs after approximately 50 batch insert</title><link>http://www.teradata.com/teradataforum/Topic15136-11-1.aspx</link><description>I took the example T20206JD [url=http://www.teradata.com/DownloadCenter/Topic9347-99-1.aspx][/url]provided by Teradata  and slightly modified it.I increased number of the batches and size of each batch. Each batch has 1000 inserts and I have about 200 batches. See below.After running for a few iterations the program hangs. Usually it happens after approximately 50 batches. For example here are the last lines from one of the runs ADDED: Batch 46 Inserting data rows...Debugger shows that java program waits on socket for Teradata Server response. No warning messages is returned be the previous batchUpdateTeradata JDBC driver: 12.108Teratata Server: Windows 12.01.24[code]                        for (int j = 0; j &amp;lt; 209; j++) {                            int batchCount = 0;                            for (int i = 0; i &amp;lt; 1000; i++) {                                pstmt.setInt(1, 1);                                pstmt.setString(2, strBuf);                                pstmt.addBatch();                                batchCount++;                                pstmt.setInt(1, 2);                                pstmt.setString(2, strBuf);                                pstmt.addBatch();                                batchCount++;                            }                            System.out.println(                                    "ADDED: Batch " + j);                            int updateCounts[] = pstmt.executeBatch();                            ...             }[/code]</description><pubDate>Fri, 17 Apr 2009 22:10:02 GMT</pubDate><dc:creator>pganelin</dc:creator></item><item><title>perl DBI driver for Teradata DBD::Teradata</title><link>http://www.teradata.com/teradataforum/Topic15144-11-1.aspx</link><description>I just wanted to let you know that there is the enhanced perl modul DBD::Teradata v12.001 available under GNU GPL sinc Dec. 2008.Up to now an ancient version with reduced functionality has been availalbe on cpan.org.This module can be used to access Teradata directly from a perl program. Using this functionality you can develop applications, automated dataflows, dynamic sql, etc.Details, docu and free download @ http://www.presicient.com/tdatdbd/Note: "Note that Presicient has discontinued development of and support for Teradata products"Anybody using this already, successfully ?</description><pubDate>Mon, 20 Apr 2009 03:51:50 GMT</pubDate><dc:creator>Georg G.</dc:creator></item><item><title>JDBC FastLoad failed: Found 0 AMP(s) and created 0 FastLoadConnection(s) and 0 FastLoadPreparedStatement(s)</title><link>http://www.teradata.com/teradataforum/Topic15127-11-1.aspx</link><description>I got the following error when I tried to use FastLoad:JDBC driver: 12.106 Teradata Server: Windows Demo. 12.0[i]com.teradata.jdbc.jdbc_4.util.JDBCException: [Teradata JDBC Driver] [TeraJDBC 12.00.00.106] [Error 1205] [SQLState HY000] The next failure(s) in the exception chain occurred while creating FastLoad resources for database table "TDUSER"."TEST". Found 0 AMP(s) and created 0 FastLoadConnection(s) and 0 FastLoadPreparedStatement(s) with SESSIONS=0, but all FastLoad resources that were created have now been closed.[/i]The same code runs fine against real Teradata Server (i.e. Teradata/NCR hardware)I suspect that that I need to configure Windows Demo server but I did not find anything about it in the documentation about FastLoadAny hint where to look would be greatly appreciated.Thank you,Pavel</description><pubDate>Fri, 17 Apr 2009 11:39:56 GMT</pubDate><dc:creator>pganelin</dc:creator></item><item><title>Teradata.Client.Provider.tdException: [Teradata Database] [3939]</title><link>http://www.teradata.com/teradataforum/Topic15013-11-1.aspx</link><description>Teradata.Client.Provider.tdException: [Teradata Database] [3939] There is a mismatch between the number of parameters specified and the number of parameters required.My update is generated through the .net 2005 dataAdapter config wizard based upon a select stmt i give to it. The select statement is:"select hierarchy_Name from functionalHierarchy where parent_Hierarchy =" + "'" + parent + "'";The wizard generates the update as follows:SELECT hierarchy_Name, hierarchy_Desc, parent_Hierarchy, operation_Type, operation_Reason, create_By, last_Updated_By FROM functionalHierarchy WHERE (hierarchy_Name = ?)Any ideas what I or indeed the config wizard am doing wrong?Is it just me or does the .NET Provider for TeraData not do what it claims it can do!?!</description><pubDate>Wed, 08 Apr 2009 00:21:52 GMT</pubDate><dc:creator>Neeraj shukla</dc:creator></item><item><title>Default ODBC install location on Solaris Opteron x86-64</title><link>http://www.teradata.com/teradataforum/Topic15021-11-1.aspx</link><description>I successfully installed the ODBC client on Solaris Opteron, and it is listed in the pkginfo -l output: PKGINST:  tdodbc64      NAME:  Teradata ODBC Driver  CATEGORY:  application      ARCH:  solaris-x8664   VERSION:  12.00.00.01   BASEDIR:  /    VENDOR:  NCR Corporation    PSTAMP:  esasol80020071019184432 INSTDATE:  Apr 08 2009 14:56   STATUS:  completely installed     FILES:       48 installed pathnames                   2 shared pathnames                  14 directories                   3 executables               48765 blocks used (approx)However, i have no idea what location it got installed to.  What is the default folder on this platform, and what is the 64-bit driver library name to search for?</description><pubDate>Wed, 08 Apr 2009 22:19:16 GMT</pubDate><dc:creator>ddeng</dc:creator></item><item><title>Error selecting Date when using jdbc</title><link>http://www.teradata.com/teradataforum/Topic14951-11-1.aspx</link><description>I have a table with a few columns of DATE type. I am able to select data from this table using BTEQwin. However, as soon as I use something which connects via the jdbc driver I get the message "TeraResultSet:getTimestamp function failed".I am using driver 12.00.00.107.This error turns up both when I connect using the SQL Explorer plugin in Eclipse and through my application which is running in Tomcat (and uses hibernate, if that matters).I found a workaround by casting to a timestamp and then a char(10) like so:(cast(cast(m_.misson_date as Timestamp(0)) as char(10)))However, I am also forced to have String as my type in hibernate instead of Date.Is there something I can do to make this work while preserving the Date type?</description><pubDate>Wed, 01 Apr 2009 10:32:33 GMT</pubDate><dc:creator>twc87</dc:creator></item><item><title>Terasso Error?</title><link>http://www.teradata.com/teradataforum/Topic14882-11-1.aspx</link><description>I'm using SQL Assistant and recently had some "systematic updates" pushed to my machine that appear to have affected my teradata configuration.  Not sure if one of my config/dll files was deleted/moved but it appears that might be the case.  I could probably troubleshoot if i knew what a baseline set of config files should be...</description><pubDate>Tue, 24 Mar 2009 12:24:23 GMT</pubDate><dc:creator>nahuna</dc:creator></item><item><title>Teradata ODBC &amp; Oracle BI - issues</title><link>http://www.teradata.com/teradataforum/Topic13686-11-1.aspx</link><description>I have installed the Teradata ODBC on the server (solaris) and have added the Teradata paths to the LD_LIBRARY_PATH and specified the ODBCINI parm within the .profile for the id used by the BI Servers.Added the ODBC info into the file.Tested ODBC using Teradata's adhoc program, works like a charm.Recycled SA &amp; SAW, attempted to access Teradata tables (update row count) and get the following:NQODBCSQL_STATE: HY000nQSError: 10058 A general error has occurred.nQSError: 43093 An error occurred while processing the EXECUTE PHYSICAL statementnQSError: 16023 The ODBC function has returned an error. The database may not be available, or the network may be down.I'm not familiar with BI but was told it is in 64bit mode.We have tried with both the 64bit and 32bit Teradata Drivers with same errors.Any thoughts, ideas, suggestions would be appreciated.</description><pubDate>Tue, 25 Nov 2008 15:36:46 GMT</pubDate><dc:creator>patmason</dc:creator></item><item><title>OBIEE on Linux odbc.ini</title><link>http://www.teradata.com/teradataforum/Topic14800-11-1.aspx</link><description>Is anyone using OBIEE on top of TD?  Can you provide the odbc.ini format for TD?</description><pubDate>Tue, 17 Mar 2009 13:30:32 GMT</pubDate><dc:creator>stc944</dc:creator></item><item><title>32 and 64-bit GSS / ICU Client Utilities</title><link>http://www.teradata.com/teradataforum/Topic13479-11-1.aspx</link><description>Hi I have an AIX installation that has to use the 64-bit version of the Terdata ODBC driver (tdata.so). My $LIBPATH references all of the 64-bit libraries for GSS and ICU. Unfortunately, I get the following error when I try to use mload:=========================================================================                                                                                  ==          Processing Control Statements                               ==                                                                                  =========================================================================.logtable test;0002 .logtable test;**** 12:08:39 UTY1006 CLI error: 235, MTDP: EM_GSSINITFAIL(235): call to gss_init failed.**** 12:08:39 UTY2410 Total processor time used = '0.036889 Seconds'     .       Start : 12:05:32 - TUE NOV 11, 2008     .       End   : 12:08:39 - TUE NOV 11, 2008     .       Highest return code encountered = '12'.$ I believe that I also need to use the 32-bit GSS and ICU environment for mload / fload etc...and I should be able to set my new $LIBPATH to point to the 32-bit stuff in my mload shell script. I need to know if both 32 and 64-bit GSS and ICU environments can co-exist in the same installation?Thanks for any responsesG</description><pubDate>Tue, 11 Nov 2008 08:02:38 GMT</pubDate><dc:creator>gunican</dc:creator></item><item><title>Query Server error  ODBC 12.0.0.1 invalid string or buffer length</title><link>http://www.teradata.com/teradataforum/Topic14672-11-1.aspx</link><description>Most people that install have no issues. However, just a few experience this error and have had to go back to previous ODBC version in order to keep working. They upgraded from version 03.02.00.12.  Did not remove the old version first. Installed over the old just like all the other users that had no problems did. Thanks for any information.</description><pubDate>Fri, 06 Mar 2009 10:02:42 GMT</pubDate><dc:creator>smreisiger</dc:creator></item><item><title>.Net Teradata Drivers</title><link>http://www.teradata.com/teradataforum/Topic14655-11-1.aspx</link><description>We have a upload limit of a 1000 rows in my company using an ODBC Connection.I have a .net app which loads to teradata from sql server using Teradata.Client.Provider.Does anyone know if this driver is still using an ODBC connection or someother connection type?</description><pubDate>Wed, 04 Mar 2009 13:48:13 GMT</pubDate><dc:creator>bhavsp</dc:creator></item></channel></rss>