0
votes
1answer
104 views
Problems using REXX to access both Teradata output and DB2 output
I have a REXX job that needs to read from both Teradata (using BTEQ) and DB2. At present, I can get it to either read from Teradata or DB2, but not both. When I try to read from both, the Teradata one …
0
votes
1answer
446 views
How to import data from excel file to Teradata table using BTEQ scripts?
Hi gurus,
I was able to do fill tables with data from Excel file or text files using GUI utility Teradata Sql assistant. But now I have a requirement to import data into teradata tables from excel …
0
votes
4answers
119 views
What is the difference between GROUP BY and DISTINCT?
HI..
I have the table with the following data
empid empname deptid address
aa76 John 6 34567
aa75 rob 4 23456
aa71 smith 3 12345
aa74 dave 2 …
0
votes
2answers
54 views
what is the SQL to display a number (200909) as Sep 2009 in Teradata 12
what is the SQL to display a number (200909) as Sep 2009 in Teradata 12
0
votes
1answer
182 views
How to insert data from an excel sheet into a database table??
Hi,
I need to insert the data from an excel sheet into a teradata table.
and I need this to be done using a MACRO.
I have data in an excel sheet like
COL1 COL2 COL3 COL4
1 2 3 4
2 …
0
votes
2answers
248 views
Teradata Linked Server in SQL 2005
I am trying to connect to Teradata using a Linked Server in SQL Server 2005. When I try to use SQL Server to connect using OPENQUERY, I get the following errors:
Msg 7399, Level 16, State 1, Line 1
…
1
vote
4answers
960 views
Add a sequential number on create / insert - Teradata
In oracle we would use rownum on the select as we created this table. Now in teradata, I can't seem to get it to work. There isn't a column that I can sort on and have unique values (lots of …
0
votes
1answer
346 views
How to import data into teradata tables from an excel file using BTEQ import???
Hi,
Im trying to import data into tables from a file using BTEQ import.
im facing weird errors while doing this
Like:
if im using text file as input data file with ',' as delimiter as filed …
1
vote
2answers
374 views
SQL SELECT multi-columns INTO multi-variable
I'm converting SQL from Teradata to SQL Server
in Teradata, they have the format
SELECT col1, col2
FROM table1
INTO @variable1, @variable2
In SQL Server, I found
SET @variable1 = (
SELECT col1
…
1
vote
1answer
174 views
Teradata and SAS with BigInt’s
We have a teradata database that is filled with BIGINT datatypes. SAS is the primary analytic engine for the organization. The SAS access library chokes on BIGINT and therefore forces all code to cast …
0
votes
2answers
112 views
Good Resources for Teradata & Business Objects?
Can any one suggest good resources and practice exercises for Teradata and Business Objects and their combination. I have no idea on where to start..I am aware of SQL, database concepts and …
1
vote
3answers
144 views
Loading data from SAS to Teradata - When is it ready?
When loading tables from SAS to Teradata, SAS loads the data (usually using the FASTLOAD facility) and then continues down the script. However, I often get critical errors because SAS says the data is …
0
votes
1answer
507 views
Teradata locks - How to know if a table is locked ?
Is there a way to know if a table is locked and what kind of lock is currently on a table? I was hoping for something through the DBC tables in teradata, but I can't find any reference to anything …
2
votes
3answers
380 views
How to SELECT sum of numbers less than 30 and sum of numbers greater than 30?
I'm trying to write a SELECT statement to select the sum of field but I want to return the sum of numbers less than 30 and also the sum of numbers greater than 30. I realize I can do this with two …
3
votes
5answers
775 views
Can you recommend a good source for Teradata Best Practices?
Looks like my data warehouse project is moving to Teradata next year (from SQL Server 2005).
I'm looking for resources about best practices on Teradata - from limitations of its SQL dialect to idioms …
