Creates a new schema.
Add-Schema [-Name] <String> [[-Owner] <String>] [<CommonParameters>]
The Add-Schema
operation creates a new schema in a database. It does so in an idempotent way, i.e. it only creates the schema if it doesn't exist.
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Name | String | The name of the schema. |
true | false | |
Owner | String | The owner of the schema. |
false | false |
Add-Schema -Name 'rivetexample'
Creates the rivetexample
schema.