<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://communities.bentley.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Design Assistant didn&amp;#39;t work with project export for DGN-SSS2 TIER Persistence</title><link>https://communities.bentley.com/products/utility_network_analysis___design/f/openutilities-forum/110597/design-assistant-didn-t-work-with-project-export-for-dgn-sss2-tier-persistence</link><description>Hello, I use the Electric Data Modeling Administrator to export my own project and load a Expect Designer database. 
 When I export a project for DGN-SSS2TIER persistence model and open the Expect Designer and try to place new feature in the Design Assistant</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Design Assistant didn't work with project export for DGN-SSS2 TIER Persistence</title><link>https://communities.bentley.com/thread/337907?ContentTypeID=1</link><pubDate>Thu, 10 Sep 2015 08:23:22 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:eebe5006-6d68-40ec-b62e-49f8394d7f81</guid><dc:creator>Nikolay Tsonev</dc:creator><description>&lt;p&gt;Thanks Mike,&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;You are right the feature names is different in Workspace and Database.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;I added one more checkbox in frmLoadIntoDb Form to set MA to load right data in database.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;For others&amp;nbsp; have same problem I attached VBA Form.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://communities.bentley.com/cfs-file/__key/communityserver-discussions-components-files/5926/frmLoadIntoDb.zip"&gt;communities.bentley.com/.../frmLoadIntoDb.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Design Assistant didn't work with project export for DGN-SSS2 TIER Persistence</title><link>https://communities.bentley.com/thread/337813?ContentTypeID=1</link><pubDate>Wed, 09 Sep 2015 19:47:16 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:aba5eb11-a6e1-4f00-b8b4-1963499bd430</guid><dc:creator>Mike Carlisle</dc:creator><description>&lt;p&gt;Hi Nikolay,&lt;/p&gt;
&lt;p&gt;I suspect that the feature names in the database are not being prepended with the SQL Server schema name, but I am not sure why.&lt;/p&gt;
&lt;p&gt;Can you run this script on your database? (You don&amp;#39;t need to run the export or LoadIntoDB macros again)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;USE [BUDV8i]&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;/**** Update featuretype gistable ****/&lt;/p&gt;
&lt;p&gt;update CHDATA.FEATURETYPE SET GISTABLE = REPLACE(GISTABLE, GISTABLE, DATASET + &amp;#39;_&amp;#39; + GISTABLE)&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;/**** Update compoundfeature childtablename ****/&lt;/p&gt;
&lt;p&gt;UPDATE A&lt;/p&gt;
&lt;p&gt;SET A.CHILDTABLENAME = REPLACE(A.CHILDTABLENAME, A.CHILDTABLENAME, B.DATASET + &amp;#39;_&amp;#39; + A.CHILDTABLENAME)&lt;/p&gt;
&lt;p&gt;FROM CHDATA.COMPOUNDFEATURE A, CHDATA.FEATURETYPE B&lt;/p&gt;
&lt;p&gt;WHERE A.CHILDID = B.ID&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;/**** Update commoditygroup workspace ****/&lt;/p&gt;
&lt;p&gt;update CHDATA.COMMODITYGROUP SET WORKSPACE = REPLACE(WORKSPACE, &amp;#39;_DGN&amp;#39;, &amp;#39;_SSS&amp;#39;)&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;/**** Update commoditygroup Masterpath ****/&lt;/p&gt;
&lt;p&gt;update CHDATA.COMMODITYGROUP SET MASTERPATH = REPLACE(MASTERPATH, &amp;#39;_DGN&amp;#39;, &amp;#39;_SSS&amp;#39;)&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If this does not correct it, then please run the following script to reverse that change:&lt;/p&gt;
&lt;p&gt;USE [BUDV8i]&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;/**** Update featuretype gistable ****/&lt;/p&gt;
&lt;p&gt;update CHDATA.FEATURETYPE SET GISTABLE = REPLACE(GISTABLE, DATASET + &amp;#39;_&amp;#39;, &amp;#39;&amp;#39;)&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;/**** Update compoundfeature childtablename ****/&lt;/p&gt;
&lt;p&gt;UPDATE A&lt;/p&gt;
&lt;p&gt;SET A.CHILDTABLENAME = REPLACE(A.CHILDTABLENAME, B.DATASET + &amp;#39;_&amp;#39;, &amp;#39;&amp;#39;)&lt;/p&gt;
&lt;p&gt;FROM CHDATA.COMPOUNDFEATURE A, CHDATA.FEATURETYPE B&lt;/p&gt;
&lt;p&gt;WHERE A.CHILDID = B.ID&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;　&lt;/p&gt;
&lt;p&gt;/**** Update commoditygroup workspace ****/&lt;/p&gt;
&lt;p&gt;update CHDATA.COMMODITYGROUP SET WORKSPACE = REPLACE(WORKSPACE, &amp;#39;_SSS&amp;#39;, &amp;#39;_DGN&amp;#39;)&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;/**** Update commoditygroup Masterpath ****/&lt;/p&gt;
&lt;p&gt;update CHDATA.COMMODITYGROUP SET MASTERPATH = REPLACE(MASTERPATH, &amp;#39;_SSS&amp;#39;, &amp;#39;_DGN&amp;#39;)&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Hope that helps,&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Design Assistant didn't work with project export for DGN-SSS2 TIER Persistence</title><link>https://communities.bentley.com/thread/337681?ContentTypeID=1</link><pubDate>Wed, 09 Sep 2015 08:03:27 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:a532f12c-49af-4345-bb71-398a62544776</guid><dc:creator>Nikolay Tsonev</dc:creator><description>&lt;p&gt;Hi Mike,&lt;/p&gt;
&lt;p&gt;I do exactly same steps :&lt;/p&gt;
&lt;p&gt;1. Export the workspace&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/5926/BUD1.png"&gt;&lt;img width="571" height="369" style="width:455px;height:237px;" src="/resized-image/__size/940x0/__key/communityserver-discussions-components-files/5926/BUD1.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;2. Export SQL Script for Utility schema and Execute in WP Database (BUDV8i)&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/5926/BUD2.png"&gt;&lt;img width="572" height="369" style="width:421px;height:243px;" src="/resized-image/__size/940x0/__key/communityserver-discussions-components-files/5926/BUD2.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;3. Load Database &lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/5926/BUD3.png"&gt;&lt;img width="663" height="599" style="width:486px;height:464px;" src="/resized-image/__size/940x0/__key/communityserver-discussions-components-files/5926/BUD3.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Result is: I please features but Design&amp;nbsp;Assistant&amp;nbsp;didn&amp;#39;t create a&amp;nbsp;pat.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/5926/BUD4.png"&gt;&lt;img width="905" height="508" style="width:542px;height:231px;" src="/resized-image/__size/940x0/__key/communityserver-discussions-components-files/5926/BUD4.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;P.S.&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;check&amp;nbsp;log file from export_BentleyUD_SSS2T&amp;nbsp;and I find Warning - Unknown or Empty XML Fragment File: C:\Program Files (x86)\Bentley\UtilitiesDesigner V8i\UtilitiesDesigner\DataModel\Common\xmlFragments\BUC-SQLServer2-Tier-BUIS.xml&amp;quot; my installation is default and this file is not exist.&lt;/p&gt;
&lt;p&gt;Can you tell me where can I find this file?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Nikolay&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Design Assistant didn't work with project export for DGN-SSS2 TIER Persistence</title><link>https://communities.bentley.com/thread/337532?ContentTypeID=1</link><pubDate>Tue, 08 Sep 2015 14:28:38 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:49d28a2d-d0a3-4786-91ed-7fb07b5797ba</guid><dc:creator>Mike Carlisle</dc:creator><description>Hi Nikolay,&lt;br /&gt;
Did you export the workspace and load the database? That is, did you run both the export_BentleyUD_SSS2T_ and the LoadIntoDB macros?&lt;br /&gt;
The export macro creates the workspace, but the LoadIntoDB populates the database. If they are out of synch you would get the result you are describing.&lt;br /&gt;
Thanks,&lt;br /&gt;
Mike&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>