> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.firebolt.io/feedback

```json
{
  "path": "/reference-sql/commands/data-definition/alter-view",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

> Reference and syntax for the ALTER VIEW command.

# ALTER VIEW

Updates the specified VIEW.

## ALTER VIEW OWNER TO

Change the owner of a view. The current owner of a view can be viewed in the `information_schema.views` view on `view_owner` column.

check [ownership](/guides/security/ownership) page for more info.

### Syntax

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
ALTER VIEW <view> OWNER TO <user>
```

### Parameters

| Parameter | Description                                                          |
| :-------- | :------------------------------------------------------------------- |
| `<view>`  | Name of the view to change the owner of.                             |
| `<user>`  | The new owner of the view. Can be either a user name or a role name. |
