Add-Schema

Creates a new schema.

Syntax

Add-Schema [-Name] <String> [[-Owner] <String>] [<CommonParameters>]

Description

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.

Parameters

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

EXAMPLE 1

Add-Schema -Name 'rivetexample'

Creates the rivetexample schema.