Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] CREATE SYNONYM

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] CREATE SYNONYM
 Login/Join
 
Platinum Member
posted
Hi,
I'm using this method to dynamically create my masterfiles.
Is there any documentation about this?
Right now I'm trying to set a value for the REMARKS attribute. It's possible?

Thanks,
Carlos Dias

This message has been edited. Last edited by: Kerry,


WebFOCUS version: 7.6
Linux/Windows
HTML, Excel
 
Posts: 127 | Location: Aveiro, Portugal | Registered: February 04, 2011Report This Post
Expert
posted Hide Post
Carlos,

It seems difficult to find documentation about the CREATE SYNONYM command, see this thread for some information: [SOLVED] Metadata generation using the CREATE SYNONYM command.

The REMARKS attribute is a table attribute. In our Oracle world, the "COMMENT ON TABLE" in the Oracle table DDL becomes the REMARKS attribute in the Master.

Hope this helps.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Platinum Member
posted Hide Post
I already check the topic with information about the CREATE SYNONYM. Since this is a very interesting feature it would be nice if this was document.

I'm using the COMMENT ON TABLE but this appears in the DESCRIPTION of the table, not in the REMARKS attribute.


WebFOCUS version: 7.6
Linux/Windows
HTML, Excel
 
Posts: 127 | Location: Aveiro, Portugal | Registered: February 04, 2011Report This Post
Expert
posted Hide Post
CREATE TABLE "ZZZ"."YYY" 
("AAA" VARCHAR2(64 CHAR), 
"BBB" VARCHAR2(64 CHAR), 
"CCC" VARCHAR2(10 CHAR) DEFAULT 'SQLORA', 
"DDD" VARCHAR2(4000 CHAR), 
CONSTRAINT "YYY_PK" PRIMARY KEY ("AAA") ENABLE
) ORGANIZATION INDEX NOCOMPRESS PCTFREE 10 INITRANS 2 MAXTRANS 255 LOGGING
STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
TABLESPACE "ZZZ_HOLDING_DATA" 
PCTTHRESHOLD 50 INCLUDING "AAA" OVERFLOW
PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 LOGGING
STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
TABLESPACE "ZZZ_HOLDING_DATA" ;

COMMENT ON COLUMN "ZZZ"."YYY"."AAA" IS 'Abc';
COMMENT ON COLUMN "ZZZ"."YYY"."BBB" IS 'Def';
COMMENT ON COLUMN "ZZZ"."YYY"."CCC" IS 'Ghi';
COMMENT ON COLUMN "ZZZ"."YYY"."DDD" IS 'Jkl';
COMMENT ON TABLE "ZZZ"."YYY"  IS 'Tuv';

--------------------------------------------------

FILENAME=ZZZ_YYY, SUFFIX=SQLORA  ,
REMARKS='Tuv', $
SEGMENT=ZZZ_YYY, SEGTYPE=S0, $
    FIELDNAME=AAA, ALIAS=AAA, USAGE=A64, ACTUAL=A64,
      DESCRIPTION='Abc', $
    FIELDNAME=BBB, ALIAS=BBB, USAGE=A64, ACTUAL=A64,
      DESCRIPTION='Def', $
    FIELDNAME=CCC, ALIAS=CCC, USAGE=A10, ACTUAL=A10,
      DESCRIPTION='Ghi', $
    FIELDNAME=DDD, ALIAS=DDD, USAGE=A4000, ACTUAL=A4000,
      MISSING=ON,
      DESCRIPTION='Jkl', $


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] CREATE SYNONYM

Copyright © 1996-2020 Information Builders