0
votes
2answers
20 views

What is best tool to compare two different Database ,the first database is Ms Sql and another is DB2

I have two database , First Db is Microsoft SqlServer (version 2008 R2) and second database is DB2 i need a tool for comparing schema and tables in both ot them ? is every body have idea or ...
0
votes
1answer
24 views

DB2 Performance CASE vs COALESCE

I'm modifying an existing statement that joins user information in one table so that the user info can come from another table. One is a permanent table and the other is temporary (records get moved ...
0
votes
1answer
63 views

Alternative to GROUP BY to consolidate repeating values in single column

I'm using DB2 which apparently doesn't let you use the GROUP BY clause when it's returning more than one column. I have records that have repeating values for ID and name, for example: EmpID | - ...
0
votes
1answer
37 views

How to code SQL statements from generated Crystal

Here we have generated Crystal SQL and I need to make these same on AS/400 db2 for performance reasons. How do you code these in AS/400 SQL? TodaysDate like and <>
0
votes
2answers
56 views

Not able to run SQL queries in AS400, run into Invalid Token errors

In AS400, how can i perform arithmetic operations (like +, -) on fields. For the query Select id, sum(field1+field2) as Total from table group by id, getting the following error msg in German ...
0
votes
2answers
79 views

Convert SQL Server date to As400 date

I have a date in SQL Server in this format: 1/1/2013 14:15:16 I want to convert it to 2013-1-1-14.15.16.000000 I did this in C# by doing something like this ...
0
votes
1answer
27 views

Dynamic way of counting number of previous rows in a table that satisfy some condition, over certain columns in the table

As a specific example say I have a table T with columns customer and date indicating days on which individual customers have made purchases: customer | date ---------------------- A | ...
0
votes
1answer
24 views

How to populate a single-dimension array with result of a query FOR DB2?

I need to populate a single-dimension array with a result set from a select query. I have created the array type using: create or replace type UR.array_traveler_id as BIGINT array[]; and in the ...
1
vote
0answers
48 views

DB2 will not INSERT into Created Temp Table that I created [migrated]

I normally use SQL Server but for this project I'm having to learn DB2. If I can get the below code to work I'm set for the whole project. Below is a elementary example of what I cannot get to work. ...
1
vote
2answers
54 views

Timeout updating DB2 table

I am doing an update to a DB2 table like this (java code): // Some code ripped out for brevity... sql.append("UPDATE " + TABLE_THREADS + " "); sql.append("SET STATUS = ? "); sql.append("WHERE ID = ...
0
votes
3answers
46 views

SQL Optimization for DB2

If you have a situation where you are doing a Union All on two result sets, and the each result set is derived from an inner join with the same filtered subset of a master table does the query engine ...
0
votes
1answer
24 views

db2 - already created table still undefined name

Ok, I'm gonna explain the environment so you can understand my problem. I'm using IBM Data Studio to connect and edit my DB2 database which is named [dgsmdb] I connect to the database using the ...
2
votes
2answers
39 views

Looking for DB2 SQL query

I am not very familiar with SQL and I hope some expert here can show me suitable and efficient query for what I want to achieve. I am using DB2 by the way. Below is a screenshot of a sample data. ...
0
votes
0answers
17 views

Calling a RPGIV function from SQL stored proc on DB2

Hi im trying to call a RPGIV function from a stored proc: CREATE PROCEDURE "VEN60115"."TESTJCALL1" (IN ADUI CHAR(20), OUT PRODOPIID1 CHAR(20)) DYNAMIC RESULT SETS 1 LANGUAGE RPGLE READS SQL DATA ...
0
votes
1answer
28 views

db2 alter column length named:“Group”

"GROUP" is used as a column name wity 'CHAR' type. I have to increase the column length, but I get this following error message. ALTER TABLE "DB2.FAQA_GROUP" specified attributes for column "GROUP" ...
0
votes
1answer
24 views

PL/SQL procedure definitions in DB2 as USER_ARGUMENTS in Oracle

In Oracle DB, we can get the definition of PLSQL procedures and function (Like argument, its order and datatypes) from the table USER_ARGUMENTS. I am looking for a similar source of data in case of ...
0
votes
2answers
34 views

DB2 select multi rows into one row

I have the following: UserID | Number 1 | 100 1 | 200 1 | 300 2 | 20 2 | 21 2 | 22 3 | 333 ...... ..... 1000| 23 ....... and I want to get the following result: UserID | Average 1 | 200 2 | 21 3 | ...
2
votes
1answer
35 views

PHP Zend_Db_Statement_DB2 returns null for static field

I am building my SQL statement through a PHP API, and then passing it through a module that connects to our database (DB2). My issue: a static field (sales_type) is returning null when passing the ...
0
votes
2answers
33 views

Only return rows if sum is greater than a value

I have built this SQL Query which searches for all policy numbers and returns a sum of all multiple PPOLNO's currency values : SELECT PPOLNO, SUM(PPRMPD) AS SUM FROM PFNTLPYMTH WHERE SUM(PPRMPD) ...
0
votes
4answers
47 views

WHERE Query Scenario

I have a table in DB with various columns, one of them being Name. Suppose the Names in DB are A,B,C,D,E,F. I wrote a query: Select * from Table where Name IN (#ENTERED_NAMES#) (Suppose ...
1
vote
2answers
60 views

DB2 Dependency table

Can you please mention DB2 Dependency catalog table, to find the dependency present between table and view, table and indexes and table and triggers with example. In Oracle I can use All_Dependencies ...
0
votes
1answer
33 views

Is there any way to use the table data as separate column in DB2 database

I want to use the table data as a separate column in DB2 database. For example, consider a table Employes contains EmpID, Address, DeptID, Hiredate. My question is, how to display particular hiredate ...
0
votes
1answer
47 views

Inserting large xml data into DB2

I have the following situation, in my database table I have a column for storing xml data. When I try to insert data into this table by using Insert query, I am getting string is too large ...
0
votes
1answer
29 views

Subtracting the result of one query from that of another in DB2

For School I need to subtract an average of values of a specific subset of entries in a table from the average of all of these values: I want to subtract SELECT AVG(gehalt) FROM mitarbeiter WHERE ...
1
vote
3answers
34 views

DB2 Sql - How to join a table on a resulting field of another table

I'm trying to join two tables but I can't join field1 of table1 with field2 of table2 which is the result of a DISTINCT instruction. e.g. Select f1 From table1 join (Select distinct(f2) as ...
0
votes
1answer
50 views

Assigning a value in SQL query

I have the below query SELECT R.CATENTRY_ID_PARENT AS PARENT, R.CATENTRY_ID_CHILD AS CHILD, D.NAME AS NAME, INTEGERVALUE AS INTEGERVALUE,STRINGVALUE AS STRINGVALUE, ...
0
votes
4answers
47 views

use sql to delete a person from a list with a conflicting field

Hi I have table which asks a person for a yes/no answer, however some have said both yes and no i.e.: person--------------status 1-------------------yes 2-------------------yes ...
0
votes
2answers
52 views

DB2 SQL filter query result by evaluating an ID which has two types of entries

After many attempts I have failed at this and hoping someone can help. The query returns every entry a user makes when items are made in the factory against and order number. For example Order Number ...
0
votes
1answer
58 views

SQL Constraint that one column value cannot be greater than another in a different table

This probably isn't a very nice question as its blending business logic with DB structure, but its not my decision so: Is it possible to define a constraint the infers the value of one column (Table ...
1
vote
2answers
38 views

Remove trailing zeros from a decimal column

How can I remove the trailing zero from the below table using SQL: SKU SIZE ABC 35.000000 QWE 36.000000 RTY 37.000000 VGY 38.000000 Expected results: SKU SIZE ABC 35 ...
-1
votes
1answer
43 views

Inserting values in table from same table with one column modified [closed]

I have a situation where I want to insert the values in a table by using existing column values but with one date column modified. I can try to insert the values with select statement from the table, ...
0
votes
1answer
52 views

Finding pairs from a single column depending on second column from the same table

I have the below scenario Source Table: Col1 Col2 Time I1 CRR T0 I1 CRH T1 I1 CRH T2 I1 CRR T3 I1 CRH T4 I1 CRR T5 I1 CRH T6 I2 CRH T7 I2 CRR ...
0
votes
0answers
28 views

DB2 : Validate inopeartive Triggers and Views

I am using DB2 9.7 FP5 for LUW. I have a scenario where I want to validate all the inoperative/invalid views,procedures and triggers. I know that dropping and recreating them will serve the purpose, ...
0
votes
1answer
25 views

size in KB for a field in sql fields

I would appreciate if someone can let me know the way to find out the size of any field in KB which is returned as a result of Sql query. For example Select x,y from table A Result - x y x1 ...
0
votes
2answers
47 views

Search Query to Filter Out records from Database

I am entering some values on a search engine on GUI Name, Date, State If a user does not enter any value, and click on 'Search', he should get entire table from the database. i.e. no filters are ...
0
votes
3answers
33 views

how do I order a column by groups rather than numbers?

Hi I am using sql db2 to create age_bands as so: case when age between 0 and 1 then '0-1' when age between 2 and 3 then '2-3' . . . when age between 10 and 11 then '10-11' which of course when you ...
0
votes
2answers
88 views

DB2 auto increment changed by itself after restarted

Each time I restart my DB2 services, the auto increment field, always change by itself, for example : before I restart, the auto increment value is at 13, and it's incremented by 1, and after I ...
0
votes
0answers
20 views

SQL3550W: … target column has been defined as GENERATED ALWAYS [migrated]

I am trying to export + import data from a table in a db2 database to another. But while running the export command I am getting the following error. SQL3550W The field value in row "26" and column ...
0
votes
1answer
40 views

SQL index design regarding joins, filters, and ORDER BY

I'm working on optimizing some queries for a DB2 LUW database and I'm going to restructure some existing indexes. However, I have a few questions on subjects that don't seem to be clearly defined, at ...
0
votes
1answer
41 views

Designing SQL indexes with join clauses and ORDER BY

I've been working on building some indexes for a DB2 LUW database. We've implemented some new queries for a landing page and I'm trying to get performance up. I've found a few indexes on some tables ...
0
votes
2answers
28 views

query for roww returning the first element of a group in db2

Suppose I have a table filled with the data below, what SQL function or query I should use in db2 to retrieve all rows having the FIRST field FLD_A with value A, the FIRST field FLD_A with value ...
0
votes
1answer
29 views

Facing issue while creating a simple DB2 trigger

Tried to create following trriger: CREATE TRIGGER EWR.INS_STU AFTER INSERT ON EWR.STUDENT FOR EACH ROW BEGIN IF ( :NEW.ROLL_NO > 60 ) THEN INSERT INTO EWR.STUDENT_DIV VALUES ( ...
0
votes
5answers
57 views

Improve performance of the SQL query (DB2)

I need to get the file name with records meeting a certain criteria, but I realize that the query is very slow when executing. I have added index, but it is still very slow, how can improve the ...
0
votes
2answers
72 views

SQL query taking a ridiculous amount of time in fetching result set

I've been working on optimizing a number of SQL queries for a landing page in which the queries are pieced together based on user selections and fired off to a DB2 database. Everything was running ...
0
votes
2answers
87 views

DB2 update - remove all characters after white space

Select Substr(<<COLUMN NAME>>, 1,(PosStr(<<COLUMNNAME>>, ' ') -1)) From <<TABLE NAME>>; This statement here helps remove the white space, and all characters ...
0
votes
8answers
203 views

Set default value in select statement(not use UNION statement)

I would like to have a SELECT statement that will return specified default values if no rows are returned from the database. We can use UNION to get the desired result, but this gives an extra ...
0
votes
1answer
60 views

returning select query with row count

I am trying to return values from a query adding a column for the row position without adding an identity column. I don't want the absolute position in the table, but the position in the query result ...
0
votes
1answer
106 views

use UPDATE and INSERT in same query

Can I do an insert and update in same query? BEFORE: MemberID | SubsID | StartDate | EndDate ------------------------------------------------ 1001 | 10 | 2012-12-21 | 2012-12-31 ...
0
votes
1answer
68 views

Left join using IS NULL does not work in DB2?

I am trying to left join to tables using a query like this SELECT * FROM table1 a, table2 b WHERE (a.ID = b.ID OR b.ID IS NULL) In Oracle, this is equivalent to a LEFT JOIN (and in other databases ...
0
votes
1answer
69 views

DB2: Setting Integrity in parent-child order

I am trying to write a script (shell+DB2) which sets integrity of all tables in database. I used below dynamic SQL to generate a script and executed it: db2 -x "select 'SET INTEGRITY FOR '|| ...

1 2 3 4 5 21