Aqua Data Studio 14.0.0-rc-42
Build #: 34276
Built on: 2013-Oct-02 12:24:18 PM
Issue: while creating the schema it takes dbo as the owner of the created schema ,
we cannot specify the owner of our choice.
Steps to reproduce:
1>schema-->Create schema
sript getting genereted is like this:
CREATE SCHEMA [newschema]
GO
But in MS Sql server management studio when we create schema we get the schema owner option.
script getting generated there is:
USE [saima]
GO
CREATE SCHEMA [newschema] AUTHORIZATION [Username]
GO
Can we have the option to decide owner for the schema, being created,So it will not take default value.