0
votes
DB2 Query Output - Different Behavior
Both queries should return the same rows. If this really behaves as you describe, you have found a bug in DB2.
What are you trying to accomplish with this query? If the values (1,2,3,4) o …
0
votes
How to revoke permission of Windows Administrator user from DB2?
By default, DB2 databases are created with CONNECT authority granted to public. If you want to restrict some users from connecting, you need to do
GRANT CONNECT ON DATABASE TO < …
1
vote
Create DB2 History Table Trigger
Have you considered doing this as a two step process? Implement a simple trigger that records the original and changed version of the entire row. Then write a separate program that runs once a da …
1
vote
Exception while running number of queries concurrently on DB2
The pagesize of a bufferpool has to match the pagesize of the tablespaces it is associated with. Do all of your tablespaces use 32K pages? You should check whether there is a different bufferpool …
