Hi guys first of all I have no expirience with DB programing only basic SQL queries.
I have an sql script that was devolped for SQL Server 2005 FB and I need to run it in SQL server 2000.
I don’t have the original 2005 DB. only a script and a SQL 2000DB
I found many guides for converting a whole DB but what can I do with a single script?
it is a very long script that I cannnot share here because of datasecurity issues.
here is the error

please assist me.
The syntax for specifying index options has changed – look closely at the
WITHclause:SQL Server 2000
SQL Server 2005 and later
The
WITHclauses in your script use parentheses and that causes the error. Unless you know that the script sets some specific index options, you can simply remove all theWITH ( ... )clauses.