Eg.
You created a model stored schema with Initialize-AXModelStore -AOSAccount "Domain\AccountName" -SchemaName <newschema> -Server <servername> -Database <databasename>
Then when you run Initialize-AXModelStore –Drop <schemaname>, you hit error claiming the XU_DropSchema does not exist.
It is simply because the pre-release database doesn't have the required stored procedure to drop the schema.
All you need to do is
- Change the stored procedure name to [dbo].[XU_DropSchema], execute it
- Then rerun the Initialize-AXModelStore –Drop
No comments:
Post a Comment