Comments are available to members only. Sign up or Log in to view these comments.
Main Topics
Browse All TopicsThe problem is very easy and I just need confirmation of my thoughts.
A little while ago I asked a question for a similar datatype in DB2 for the SQLServer UniqueIdentifier type ( http://www.experts-exchang
Today when I was browsing around too see if we could do some stuff automaticly to make up some time we will be loosing when changing from uniqueidentifiers to a db2 unique type and I came accross the IBM DB2 Migration Toolkit which allows you to migrate from MSSQL to DB2 quite easily.
So I gave it a try with one of our .sql scripts, but the result was not as I expected. The example is fictional though:
Input:
CREATE TABLE [Users]
(
[ID] uniqueidentifier PRIMARY KEY ROWGUIDCOL DEFAULT (newid()) NOT NULL,
[FirstName] nvarchar(256) NULL,
[LastName] nvarchar(256) NULL,
[Age] int NULL
)
Output:
CREATE TABLE Users(
ID CHAR(16) FOR BIT DATA NOT NULL PRIMARY KEY,
FirstName VARGRAPHIC(256),
LastName VARGRAPHIC(256),
Age INTEGER,
)!
CREATE TRIGGER "[Users1" NO CASCADE BEFORE INSERT ON Users
REFERENCING NEW AS NEW FOR EACH ROW MODE DB2SQL
BEGIN ATOMIC
--| (newid())
IF NEW.ID IS NULL THEN
SET NEW.ID = MSSQL.NEWID();
END IF;
END!
--------
This basicly suggests that in DB2 there is a function/trigger (whatever) called MSSQL.NEWID() which can generate uniqueidentifiers.
I highly doubt DB2 will ever have a function/method/trigger called after a competetitor's database. But I assume that this is not correct and that the Migration kit thinks they are 'homemade' functions/triggers which were not added in the .sql file, so the migration kit thinks it's a homemad/available function/trigger in DB2?
Am I correct in these thoughts?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: sachinwadhwaPosted on 2006-03-29 at 07:13:52ID: 16322414
Comments are available to members only. Sign up or Log in to view these comments.