資料方案 data-schemas
原則 principles
若要編輯、建立及設定結構描述,請按一下Adobe Campaign使用者端主控台的 Administration > Configuration > Data schemas 節點。
編輯欄位會顯示來源結構描述的XML內容:
預覽會自動產生擴充型綱要:
如果您需要檢查架構的完整結構,可以使用預覽索引標籤。 如果結構描述已擴充,您就能將其所有擴充功能視覺化。 作為補充,[檔案]索引標籤會顯示所有綱要屬性和元素及其特性(SQL欄位、型別/長度、標籤、說明)。 檔案索引標籤僅適用於產生的結構描述。 如需詳細資訊,請參閱重新產生結構描述區段。
範例:建立合約表格 example--creating-a-contract-table
在下列範例中,我們想要在Adobe Campaign資料庫的資料庫模型中為 合約 建立新資料表。 此表格可讓您儲存每個合約的持有者和共同持有者的名字和姓氏,以及電子郵件地址。
要執行此操作,您需要建立表格的綱要,並更新資料庫結構以產生對應的表格。 套用下列階段:
-
編輯Adobe Campaign樹狀結構的 Administration > Configuration > Data schemas 節點,然後按一下 New 。
-
選擇 Create a new table in the data model 選項,然後按一下 Next 。
-
指定資料表的名稱和名稱空間。
note note NOTE 依預設,使用者建立的方案會儲存在「cus」名稱空間。 如需詳細資訊,請參閱結構描述識別。 -
建立表格內容。 我們建議使用專案小幫手來確認沒有遺失設定。 若要這麼做,請按一下 Insert 按鈕,然後選擇要新增的設定型別。
-
定義合約表格的設定:
code language-none <srcSchema desc="Active contracts" img="ncm:channels.png" label="Contracts" labelSingular="Contract" mappingType="sql" name="Contracts" namespace="cus" xtkschema="xtk:srcSchema"> <element desc="Active contracts" img="ncm:channels.png" label="Contracts" labelSingular="Contract" name="Contracts" autopk="true"> <attribute name="holderName" label="Holder last name" type="string"/> <attribute name="holderFirstName" label="Holder first name" type="string"/> <attribute name="holderEmail" label="Holder email" type="string"/> <attribute name="co-holderName" label="Co-holder last name" type="string"/> <attribute name="co-holderFirstName" label="Co-holder first name" type="string"/> <attribute name="co-holderEmail" label="Co-holder email" type="string"/> <attribute name="date" label="Subscription date" type="date"/> <attribute name="noContract" label="Contract number" type="long"/> </element> </srcSchema>
新增合約型別,並將索引置於合約編號上。
code language-none <srcSchema _cs="Contracts (cus)" desc="Active contracts" entitySchema="xtk:srcSchema" img="ncm:channels.png" label="Contracts" labelSingular="Contract" name="Contracts" namespace="cus" xtkschema="xtk:srcSchema"> <enumeration basetype="byte" name="typeContract"> <value label="Home" name="home" value="0"/> <value label="Car" name="car" value="1"/> <value label="Health" name="health" value="2"/> <value label="Pension fund" name="pension fund" value="2"/> </enumeration> <element autopk="true" desc="Active contracts" img="ncm:channels.png" label="Contracts" labelSingular="Contract" name="Contracts"> <attribute label="Holder last name" name="holderName" type="string"/> <attribute label="Holder first name" name="holderFirstName" type="string"/> <attribute label="Holder email" name="holderEmail" type="string"/> <attribute label="Co-holder last name" name="co-holderName" type="string"/> <attribute label="Co-holder first name" name="co-holderFirstName" type="string"/> <attribute label="Co-holder email" name="co-holderEmail" type="string"/> <attribute label="Subscription date" name="date" type="date"/> <attribute desc="Type of contract" enum="cus:Contracts:typeContract" label="Type of contract" name="type" type="byte"/> <attribute label="Contract number" name="noContract" type="long"/> <dbindex name="noContract" unique="true"> <keyfield xpath="@noContract"/> </dbindex> </element> </srcSchema>
-
儲存結構描述以產生結構:
-
更新資料庫結構以建立將連結綱要的表格。 如需詳細資訊,請參閱更新資料庫結構。