sp_fulltext_table with SQL Server Agent - permissions problem?
- From: "edwaldo" <edwaldo@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 18 Jul 2005 17:49:01 -0700
Hi,
I have two databases on separate servers - db1 & db2.
I use DTS to copy the tables from db1 to db2 overnight. Then I want to
recreate the fulltext catalog on one of the tables in db2 using a SQL Server
Agent job to run sp_fulltext_table:
USE hm2
EXEC sp_fulltext_database 'enable'
USE hm2
EXEC sp_fulltext_catalog 'ft_item', 'drop'
USE hm2
EXEC sp_fulltext_catalog 'ft_item', 'create'
USE hm2
EXEC sp_fulltext_table 'item', 'create', 'ft_item', 'item_id'
This is where is fails (I think).
The table I'm fulltext indexing has a primary key column defined (NOT NULL).
When the overnight copy runs, the table is created under dbo, and the sql
agent job is running as dbo. I have BUILTIN\Administrators setup with the
correct permissions.
Is this likely to be a permissions problem?
Many thanks,
ed
.
- Follow-Ups:
- Re: sp_fulltext_table with SQL Server Agent - permissions problem?
- From: Hilary Cotter
- Re: sp_fulltext_table with SQL Server Agent - permissions problem?
- Prev by Date: Re: SQL Server 2000 F/T and WSS
- Next by Date: Re: SQL Turbo
- Previous by thread: Re: SQL Server 2000 F/T and WSS
- Next by thread: Re: sp_fulltext_table with SQL Server Agent - permissions problem?
- Index(es):