Como criar um sinonimo para um banco de dados sql server 2005

Encontrei o codigo abaixo mais não se aplica a Database

Alguem tem alguma ideia?

Create a synonym.

Syntax
      CREATE SYNONYM [Synonym_schema.] synonym FOR object 

   object:
      server.[database].[schema].object
      database.[schema].object
      schema.object

Key
   synonym        The synonym to create
   Synonym_schema The schema in which the synonym is created.
   
Synonyms may be created with dynamic SQL.

Synonyms can be created for the following objects:

Table 
View
local/global temporary table
Assembly (CLR) Stored Procedure/Table-valued Function/Scalar Function
Assembly Aggregate (CLR) Aggregate Functions
Replication-filter-procedure
Extended Stored Procedure
SQL Stored Procedure
SQL Scalar Function
SQL Table-valued Function
SQL Inline-table-valued Function

The base object need not exist at synonym create time. It must obviously exist at run time.

Example

CREATE SYNONYM ss64 FOR MyDatabase.MySchema.MyTable;
GO