Tagged Questions
0
votes
1answer
88 views
Retrieve huge number of records ( 300000 ) using a c# code from a table (Teradata Database)
I have a portion of a code where I need to get the data from the table for a particular condition
( where accountid = ' ' ) . The data retreival is a very slow process . Retreving record it self ...
1
vote
4answers
71 views
Alternate query to join two seperate queries
My sample queries as follows:
SELECT q3.*
FROM (
(
SELECT prod_id,
prod_name,
cust_id
FROM sell_info
...
3
votes
1answer
214 views
RowID in Teradata
I need to pull a row ID with a select statement. Something that is similar to the row ID of oracle. How would I do that in Teradata? I am trying the following query but it is throwing error.
select ...
0
votes
0answers
88 views
Multiple mappers for small file
I'm working on an ETL application based on Hive. One functional requirement is that we export some of the data in Hive to Teradata (which is the existing solution being used) and vice versa. My issue ...
0
votes
3answers
474 views
Teradata and JDBC driver - classnotfoundexception …but its there?
Trying to work with a JDBC connection to Teradata. I've loaded the tdgssconfig.jar and terajdbc4.jar file and adding them to the classpath with javac when I compile in Linux. But I still get a ...
0
votes
1answer
145 views
Joining a table in oracle with table in teradata [closed]
i have to join a table in oracle database with a table in teradata database using java. can anybody help me with this ? comments are appreciated .
0
votes
5answers
454 views
Getting distinct values from Resultset
I have the following table Employee and records as follows:
Eid Ename Phone
------------------------
1 A 043
1 A 067
2 B 073
2 B ...
0
votes
0answers
71 views
What is the Sql struct equivalent to load teradata tables
I have an application which loads the data in XML to Oracle tables. Now we are moving to teradata. Using Java a DAO is populated and that DAO calls oracle stored procedure after mapping DTO a sql ...
0
votes
1answer
398 views
Threads hanging permanently on JDBC Teradata requests
I'm using JDBC to query a Teradata server. There are up to 100 simultaneous requests, each one using a fresh connection, and closing it at the end. After some hours of work, some of the threads ...
0
votes
0answers
328 views
Spring managed transaction issue with Teradata
In my application, hibernate transactions are managed by spring aop and uses Teradata as database.
THIS ISSUES IS SPECIFIC TO TERADATA AND THE SAME CODE WORKS FINE IN MYSQL.
There is one service ...
0
votes
2answers
698 views
Problem reading special characters from teradata - JDBC
I use teradata and the below query outputs "Altlüd" when run using a teradata client.
select name as name from MYTABLE where selector=?
Whereas, I get "Altl?d" as the output when I try to execute ...