Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
318 views

Data Warehouse: One Database or many?

At my new company, they keep all data associated with the data warehouse, including import, staging, audit, dimension and fact tables, together in the same physical database. I've been a database ...
2
votes
0answers
122 views

What are the major differences between SQL Server and Netezza? [closed]

I've recently been asked to join a team on which I'll be doing some Netezza work. As part of my preperation for the move, I wanted to do some tutorials on Netezzato get up-to-speed but couldn't find ...
2
votes
1answer
428 views

Netezza does not do lazy evaluation of case statements?

I'm performing a computation which might contain division by 0, in which case I want the result to be an arbitrary value (55). To my surprise, wrapping the computation with a case statement did not do ...
2
votes
1answer
416 views

Finding out the size of a Netezza table using UNIX SAS

What syntax / tables can be used to determine the size (Gbs) of a Netezza table? I am accessing via UNIX SAS (either ODBC or libname engine). I assume there is a view which will give this info?
2
votes
2answers
463 views

Netezza Sql query

I have a list of tables in a Netezza database and I want to get the name of primary key for each of the tables. Can anyone provide me the query.
2
votes
2answers
2k views

What's netezza's “rownum” equivalent? Or how do you take a “head” of a netezza table in netezza sql?

I want to run a basic query, but return only the first ten rows of the table from Netezza select a.* from some_schema.some_table a where rownum < 10 What is the Netezza way of looking at just ...
2
votes
1answer
886 views

Multiple-step OLE DB operation generated errors

I am running a simple FillSchema from a Netezza data source dss = new DataSet(); ad = new OleDbDataAdapter(cmd); ad.SelectCommand = new OleDbCommand("SELECT * FROM " + objTable.name); ...
1
vote
2answers
48 views

Netezza SQL - give a parameter

SELECT to_char(START_D,???) The issue I have above is that I can't seem to find the right parameter for the above to work. The date is numeric e.g 1102. I want to turn this into a character. ...
1
vote
2answers
190 views

ANSI Casting Timestamp Netezza - convert SQL from Teradata

I currently do not know ANSI equivalent to Teradata FORMAT key word for converting timestamp, date data types into our required representation formats. I know this can be done with to_char, to_date ...
1
vote
4answers
117 views

How do I delete one record matching some criteria in SQL? (Netezza)

I've got some duplicate records in a table because as it turns out Netezza does not support constraint checks on primary keys. That being said, I have some records where the information is the exact ...
1
vote
2answers
157 views

Switching rows to columns in SQL (Netezza)

I'm using Netezza to generate a report and I have the following query select b.group_name,a.group_id, PASS_FAIL, COUNT(*) from log a join group b on a.group_id=b.group_id group by ...
1
vote
3answers
93 views

Getting difference of two counts in SQL

I'm doing some QA in Netezza and I need to compare the counts from two separate SQL statements. This is the SQL that I am currently using SELECT COUNT(*) AS RECORD_COUNT FROM ...
1
vote
1answer
120 views

Does Netezza have an ODBC DESCRIBE function?

I would like to DESCRIBE a table held on Netezza (so can see the variable formats, distribute on clause etc). I know this is possible (natively) using \d <tablename> However I am using SAS to ...
1
vote
1answer
82 views

Is a collocated join (a-la-netezza) theoretically possible in hive?

When you join tables which are distributed on the same key and used these key columns in the join condition, then each SPU (machine) in netezza works 100% independent of the other (see nz-interview). ...
1
vote
2answers
125 views

How to connect to a User DSN using codeigniter?

I am able to connect to a User DSN on my linux box (using ODBC). How do I get to connect using code igniter? in my database.php I have the default database: $active_group = 'default'; ...
1
vote
1answer
264 views

Does Netezza support programming i.e. does it have PL/SQL equivalent?

Given that netezza has SQL equilalent in Netezza SQL does it support more powerful within-netezza-solutions through some programming model like PL/SQL?
1
vote
2answers
504 views

Netezza SQL - Extract Month issue

How do you extract just the month from a date in netezza SQL? The date shows as 05DEC2010. I've tried extract(MONTH FROM CONTACT_DATE) although it doesn't work. Any ideas? I dont want just to ...
1
vote
1answer
393 views

Can netezza database handle procedures?

Hi I am having Netezza Database. I am querying the tables through DB visualiser. Since my table creation involves complex, I am interested to use procedures but I am unable to write it in ...
0
votes
0answers
26 views

PHP: obdc_exec() fails silently in a Zend Model

I am trying to connect to a Netezza database via ODBC (not really important). What's important is that I'm trying to wrap manual odbc calls in a Zend Model. There is no ODBC adapter for Zend. I found ...
0
votes
1answer
67 views

Netezza SQL - order by an aggregate output

Select date, count(*) as volume from table group by date order by 2 or order by count or order by count(*) The order by doesn't work for any of options above. I want order by volume Can you help??
0
votes
0answers
60 views

Problems with Netezza bulk loader in Informatica

I am using Informatica 9.1.0 and I have problems using Netezza bulk loader to populate my target tables. Everything works ok when I use ODBC driver to populate the target. The mapping in question is ...
0
votes
1answer
71 views

casting string to date not working on empty strings in Netezza

I have a string field which is of the format yyyy-mm-dd. I need to convert it to a date field. This is my SQL query: select cast(rpad(trim(field_name),10,' ') as date) as field_name from table_name ...
0
votes
1answer
63 views

Conversion to timestamp from two columns

I need to convert two columns into timestamp value. SELECT TO_TIMESTAMP(PRGM_START_DAY_KEY,PRGM_START_TM_KEY) FROM DEV_AM_2..AM_TV_PROGRAM_INSTANCE_DIM The sample values are below. (Input) ...
0
votes
0answers
22 views

Is there a way to transfer data from database in one Netezza appliance to database in anothernetezza appliance?

I want to create an exact copy of a database from one Netezza appliance to another. Short of writing an ODBC program, are there any utilities that I can use to achieve this? Is it possible to used ...
0
votes
2answers
74 views

Netezza LAST_VALUE filter

Am trying to create a NETEZZA table which has only the most recent records for a particular key - eg imagine a table (MYTABLE) as follows: Col1 Col2 TIMESTAMP xxxx xxxx 13:45 xxxx xxxx 13:46 xxxx ...
0
votes
1answer
29 views

Using UNIX SAS to ascertain Netezza DISTRIBUTE_ON key

Is anybody able to provide some SAS 9.1.3 code for ascertaining the DISTRIBUTE_ON key of a particular Netezza table? have tried using the guidance here but the table comes back empty..
0
votes
0answers
50 views

Sqoop - Problem with importing date fields from netezza to hive

When trying to import date fields from Netezza to Hive with sqoop, the data is passed partially - The hh:mm:ss part is not recieved. For example - '1999-12-27 00:00:00' is recieved as '1999-12-27' I ...
0
votes
2answers
207 views

unixodbc and netezza ODBC driver issue (Undefined symbol: SSL_connect)

I'm trying to set up unixODBC to connect to a Netezza database, however I'm getting a "Undefined symbol: SSL_connect" when I try to connect using isql. Currently using: CentOS 5.5, unixODBC 2.3.0 ...
0
votes
1answer
67 views

Why is PHP not recognizing my User DSN?

I have successfully set up a user DSN on system called "NZSQL" I am able to issue SQL commands on console using: isql NZSQL and run queries on the remote database system. However in PHP I am ...
0
votes
0answers
70 views

How does one interact with a Netezza database in PHP?

The only thing I found was the following link: http://adodb.sourceforge.net however the documentation is a little buggy in terms of netezza and seems more like a hack solution.
0
votes
3answers
457 views

Jruby, JDBC, Netezza

So anyways I have a java program like this and it totally works. 1 import java.sql.*; 2 import org.netezza.*; class Conn { public static void main (String args []) throws SQLException { 6 ...
0
votes
1answer
54 views

sql related : When bucketing data pulled from the database, what column is it suppose to go to?

case when EXT_EMPL_TERM_DT-EXT_EMPL_STRT_DT between 0 and 30 then 1 else null end abcd; this "abcd" here, i dont know where the data bucketed via case statement is supposed to go ie what column, ...
0
votes
3answers
107 views

SQL - Select records only with inactive status

I have following requirement. **---Table A---** CustID_1 S1 CustID_1 S2 CustID_2 S2 CustID_2 S3 CustID_3 S4 CustID_3 S5 **---Table B---** S1 1 S2 0 S3 1 S4 ...
0
votes
1answer
393 views

How to overcome Netezza's lack of unique constraint/referential integrity enforcement?

It appears that the lack of support for enforcing 2 basic constraints (unique and foreign key), is a reason for loss of many man-hours debugging and troubleshooting difficult problems. What starts as ...
0
votes
1answer
116 views

Ruby on Rails and Netezza backend

Anyone know of how they would go about pulling data from a Netezza backend in ruby on rails. Any resources would help.
0
votes
1answer
379 views

Repeatable random sampling SQL

I need a review for my solution for sampling 100 random rows from a table stored on a MPP machine (currently Netezza , later might be hadoop/etc.) I'm not interested in using Netezza's rand(), as I ...
0
votes
1answer
284 views

Passing java.sql.date to netezza jdbc driver

When passing a Java.Sql.Date as a bind variable (a question mark in my query text) in a PreparedStatement to nzjdbc.jar, I'm getting: pg_atoi: error in "2010-02-01": can't parse "-02-01" what gives? ...
0
votes
3answers
414 views

how does netezza work? how does it compare to Hadoop?

want to understand if Netezza/Hadoop is the right choice for the below purposes: pull feed files from several online sources of considerable size at times more than a GB. clean, filter, transform ...
0
votes
1answer
2k views

How do i convert date in Netezza to yyyymmdd from timestamp format

How do i convert date in Netezza to yyyymmdd from timestamp format
0
votes
3answers
134 views

Please provide an alternative for DB visualiser for handling netezza database

currently i use db visualiser for connecting the netezza database. can you suggest any otehr alternative (freeware) for the same.
0
votes
1answer
263 views

LINQ to NETEZZA

Does anyone know if it is possible to use LINQ to query a NETEZZA back-end? Update: I've tried both the ODBC and OLEDB Netezza drivers, but neither work. Both give a "The selected object(s) use an ...
0
votes
3answers
1k views

Netezza, Teradata, DB2 Parallel/Enterprise, … versus Hadoop or others?

I'm looking at building some data warehousing/querying infrastructure, right now on top of Map/Reduce solutions like Hadoop. However, it strikes me that all the M/R work is just repeating what the ...
0
votes
4answers
7k views

Netezza SQL syntax to convert numeric YYYYMMDD format into date

We have a Netezza table that contains dates stored in a numeric YYYYMMDD format (eg 20090731). What is the best Netezza syntax to use to convert this into date format? eg SELECT ...
-1
votes
3answers
173 views

Can anyone help me write a sql query

jkdfhdjfhjh&name=ijkjkjkjkjkjk&id=kdjkjkjkjkjkjjjd&class=kdfjjfjdhfjhf The above string has some characters starting with & and ending with = for example we have &name= and I ...