Freigeben über


Alter Method

Diese Funktion wird in zukünftigen Versionen von Microsoft SQL Server nicht mehr bereitgestellt. Verwenden Sie diese Funktion beim Entwickeln neuer Anwendungen nicht, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird.

The Alter method changes the definition of the referenced stored procedure, trigger, user-defined function, or view.

Syntax

object
.Alter(
str
)

Parts

  • object
    Expression that evaluates to an object in the Applies To list.

  • str
    String that specifies a Transact-SQL command batch for referenced object creation.

Prototype (C/C++)

HRESULT Alter(SQLDMO_LPCSTR NewValue);

Hinweise

Microsoft SQL Server supports modifications to the definition of existing objects by using the Transact-SQL ALTER FUNCTION, ALTER PROCEDURE, ALTER TRIGGER, and ALTER VIEW statements. SQL Distributed Management Objects (SQL-DMO) implements execution of these statements through the Alter method of StoredProcedure, Trigger, and View objects.

Modifying a SQL Server database object by using the Alter method requires appropriate permissions. The SQL Server login used for SQLServer object connection must be mapped to a database user identified as the object owner or a member of a role with greater permissions.