I was expecting something like that actually and that was what I tried to do. Problem is I'm receiving error messages and chance is I'm executing that SQL in the wrong place (I opened a query design and pasted the SQL code there, press the execute button and, saddly, receving an error message) or I'm building that code the wrong way. Find Below a piece of that code I'm trying to use
CREATE TABLE tblEntityRoleEnum (
EntityRoleCode Text(10) NOT NULL,
EntityRoleDescription Text(50)
) ;
CREATE TABLE tblFund (
ShortName Text(20) NOT NULL,
LegalName Text(100),
LegalFundEntity Text(20),
IsManaged YesNo,
IsPlatform YesNo,
StrategyFields Integer,
SubStrategyByPC YesNo,
MainStrategyByPC YesNo,
Administrator Text(10)
) ;
CREATE TABLE tblFundMapLegalEntity (
FundShortName Text(15),
EntityCode Text(10),
InvolvedInstrumentGroup Text(5),
LegalEntityRole Text(10)
) ;
Should that work the way I mentioned above?
Tks