Difference between Create table Statements - response (3) by dnoeth
Did you check the actual resource usage in DBQL? Whenever i did it was the same CPU/IOs for both versions. Of course, there might be differences, but in most cases it could be explained by SET vs....
View ArticleTable partitioning on TIMESTAMP(3) in Teradata 13 - response (6) by SANJI
CREATE TABLE SSURI.PPI_TEST (TRACKINGNUM INTEGER, AUD_TIME TIMESTAMP) PRIMARY INDEX PPI_TEST_PR (TRACKINGNUM) PARTITION BY RANGE_N(CAST((AUD_TIME) AS DATE AT LOCAL) BETWEEN '2009-12-31' AND...
View ArticleDifference between Create table Statements - response (4) by anandc
Thanks very much for the infromation Dieter.. As you mentioned, I am going to use the CREATE tables in huge stored procedures and there are going to be atleast 50 volatile tables created and dropped...
View ArticleJdbc Driver Teradata Instance Version Level Compatibility - response (1) by...
I'm not sure what you mean by "Instance". I will take a guess that you mean the Teradata Database version. Our Supported Platforms matrix, published here on Developer Exchange, lists the compatibility...
View Article[TeraJDBC 13.10.00.32] [Error 1382] [SQLState HY000] The batch is empty -...
No, there is no Connection URL parameter to suppress this check. Any time a Java application calls the executeBatch method for an empty batch, the Teradata JDBC Driver will throw SQLException with...
View ArticleDifference between Create table Statements - response (5) by KS42982
I am afraid to say that I do not get almost similar explain in both the cases. Here is the example. I am trying to insert data from table 1 to table 2. Table 1 is a multiset table. There are around 90...
View Articleteradata .net provider name - response (1) by NetFx
The connection string shown above is for the "Microsoft .NET Data Provider for OLE DB". In other words, this ADO.NET Data Provider is a Bridge; it utilizes a native OLE DB Provider under the covers....
View ArticleUnable to connect to TeraData v13.0 from .NET client - response (1) by NetFx
It most likely means that you are connecting to wrong server (not Teradata Database); check the "Data Source" and "Port Number".
View ArticleDECIMAL OUT parameter lost value after SP CALL when after VARCHAR IN...
I tried it with the .NET Data Provider for Teradata //Building connection string TdConnectionStringBuilder builder = new TdConnectionStringBuilder();...
View ArticleDifference between Create table Statements - response (6) by Adeel Chaudhry
The only difference is that .... in option 1 you have a leverage to tweak/select (correct) index. I have seen scenarios where option 2 takes hours to process data .... and if you go with option 1 and...
View ArticleWhat tool for SP development? - response (1) by Adeel Chaudhry
SQL Assistant .... or a Notepad.
View ArticleSQL Assistant - Not able to Define ODBC Data Source through Teradata SQL...
Can you try re-installing ODBC driver?
View ArticleDid anyone store RDF data (Resource Description Framework) data on Teradata ?...
Isnt the RDF data XML files?
View ArticleImporting delimiter text file!!!!!!!! - response (9) by Adeel Chaudhry
This is a typical case of complex delimited file scenario:If you take " as your delimiter, you will have following columns: null 12345 , ABCD , STU,GHj , 01/01/2012 null and , will also be incorrect...
View ArticleDifference between Create table Statements - response (7) by dnoeth
Adeel is right,check the PIs of both table, they are different, in the second case it was exactly the same as the source table :-)A wrong PI or default SET instead of MULTISET are the common reasons...
View ArticleTable partitioning on TIMESTAMP(3) in Teradata 13 - response (7) by Adeel...
Can be done using follows: PARTITION BY RANGE_N(ts1 BETWEEN TIMESTAMP '0001-01-01 00:00:00.000000+00:00' AND TIMESTAMP '9999-12-31 23:23:59.999999+00:00' EACH INTERVAL '1' DAY); HTH!
View ArticleWill volatile tables be dropped? - response (7) by Adeel Chaudhry
Are you using dynamic SQL to create VTs?
View ArticleSybase To Teradata..... - response (1) by Adeel Chaudhry
Thorough analysis and documentation should be done on them and depending on the available skill-set .... the logic should be transformed either to a SP in Teradata (most of the cases) or for a few...
View ArticleFastLoad And Query Access - response (1) by Adeel Chaudhry
No it is not possible. Whereas, normally table is dropped and created within a FL script. HTH!
View Article