Tagged Questions
0
votes
3answers
51 views
how does “case when index” statement compare to “case index” statement
I tried to research about this command, but I can't seem to find a concrete explanation to it.
What is "case when index"? what does it do? how is it differ from case when?
When is it used?
Is this ...
0
votes
0answers
129 views
Invalid data length for VarChar, VarByte, or VARGRAPHIC using Ado.Net connector SqlServer-Teradata
I have to insert some data from SqlServer to a Teradata Server, using a SSIS package.
For Sql Server I have used OleDb Source (by variable) for retreving the data and for Teradata I have used an ...
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
...
0
votes
0answers
114 views
Making an Adjacency Matrix Using Database Table
My table has the following structure:
Column 1 - Product_Catalog_Elemet_KEY
Column 2 - Product_Catalog_Element_NAM
Column 3 - Parent_PCE_KEY
Column 4 - Rec_Start
Column 5 - Rec_End (9999-12-31 marks ...
-3
votes
2answers
544 views
practice sql queries with database [closed]
Is there any site where I can get good database with practice queries to solve. I am seeing a lot on internet, but mostly looks like beginner level.
1
vote
1answer
438 views
Teradata Equivalent for UNPIVOT and SEARCH FOR from SQL SERVER
I am trying to convert the following query from SQL server based code to TERADATA code.
INSERT INTO #Keyword(Keyword,OmnitureHitsID,Hit_Time_GMT)
SELECT Search, ...
1
vote
1answer
176 views
Fetch_status in Teradata
@@
I am using cursors in Teradata and I need some help related to fetch_status
below are the SQL Server FETCH_STATUS values
Return value Description
0 FETCH statement was successful.
-1 FETCH ...
1
vote
3answers
372 views
SQL Query Design for data validation issue
I have a fact table that contains some finance data. There is a column (VERS_NM) that defines wherther the value is "Actual" or "Current Outlook". The value for these two should always be the same but ...
3
votes
1answer
479 views
Fastest way to find Quotient by Dividing two Number
I have to do some logic based on the following implementation.
I have a big number upto 36 Digits e.g. 913695089923267549815145223638290430 (randomly generated by different app). I need to divide it ...
0
votes
1answer
375 views
how to select values from teradata server view from MS sqlserver?
I need to query data in Tera database from SQLSERVER 2005. I have IP address, userid, password, db name of the tera data base. how do i query a view in teradata from sqlserver.
2
votes
4answers
472 views
dbo in SqlServer
I'm converting database from Teradata to SqlServer. I've noticed all tables and procedures are named by the prefix "dbo." (e.g. "dbo.Table1").
I would like to know if and how I can get rid of "dbo" ...
1
vote
2answers
201 views
Early (or re-ordered) re-use of derived columns in a query - is this valid ANSI SQL?
Is this valid ANSI SQL?:
SELECT 1 AS X
,2 * X AS Y
,3 * Y AS Z
Because Teradata (12) can do this, as well as this (yes, crazy isn't it):
SELECT 3 * Y AS Z
,2 * X AS Y
...
1
vote
1answer
2k views
Teradata equivalent of persisted computed column (in SQL Server)
We have a few tables with persisted computed columns in SQL Server.
Is there an equivalent of this in Teradata? And, if so, what is the syntax and are there any limitations?
The particular computed ...
9
votes
2answers
21k 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
...
2
votes
3answers
1k 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
...