Difference between revisions of "ALTER DATABASE"

From wikieduonline
Jump to navigation Jump to search
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
ALTER DATABASE your_db OWNER TO your_user;
+
In [[SQL]] Server, this statement modifies a [[database]], or the [[files]] and [[filegroups]] associated with the database.
 +
 
 +
* <code>ALTER DATABASE your_db OWNER TO your_user;</code>
 
   
 
   
 +
[[ALTER]] DATABASE database_name CHARACTER SET character_set_name [[COLLATE]] collation;
 +
 +
ALTER DATABASE old_database_name [[RENAME TO]] new_database_name;
 +
  
 +
== Related ==
 +
* [[Parameter groups]]
 +
* [[mv]]
 +
[[ERROR: must be owner of database]]
 +
[[DROP DATABASE]]
  
 
== See also ==
 
== See also ==
* {{PostgreSQL}}
+
* {{SQL}}
 +
 
 +
[[Category:SQL]]

Latest revision as of 15:14, 18 November 2022

In SQL Server, this statement modifies a database, or the files and filegroups associated with the database.

  • ALTER DATABASE your_db OWNER TO your_user;
ALTER DATABASE database_name CHARACTER SET character_set_name COLLATE collation;
ALTER DATABASE old_database_name RENAME TO new_database_name;


Related[edit]

ERROR: must be owner of database
DROP DATABASE

See also[edit]

Advertising: