On the “Registration Information” page, uncheck “Hide advanced configuration options”
On the “Feature Selection” page I need the following additional options:
Replication
Full-text search
Connectivity Components
Management Studio Express
On the "Instance Name" page, select "Default instance"
On the “Service Account” page, we also launch the “SQL Browser” service
On the “Authentication Mode” page, select “Mixed mode” and set a password for the sa user.
Setup:
Start SQL Server 2005 Surface Area Configuration, point "Surface Area Configuration for Services and Connections" branch "MSSQLSERVER \ Database Engine \ Remote Connections" - Set "Local and remote connections \ Using TCP / IP only", restart the server.
Import DB:
Run the command line
osql -S 127.0.0.1 -U sa -P 2.5
USE [master] GO CREATE DATABASE [] on ( filename = N' :\ \ \ \ \ \ .MDF' ), ( filename = N' :\ \ \ \ \ \ .LDF' ) FOR ATTACH ; GO
It turned out that I had a full-text search catalog. The process of repairing stretched from various sources, therefore at first glance it may seem like a messy jumble of tangle. This is probably not too far from the truth.
exec sp_fulltext_catalog ' ', 'drop' exec sp_fulltext_database 'enable' CREATE FULLTEXT CATALOG AS DEFAULT; CREATE FULLTEXT INDEX ON ( ) KEY INDEX PK_ ; GO
All this was carried out in one run, there is no desire to risk and try to understand the technique of the search. It’s not a little while :) However, I have earned a full-text search after these frauds properly.
And it works. You can, for example, open a file in Notepad
%windir%\system32\drivers\etc\hosts
And add
127.0.0.1 mysampledomain.net
Then you can log in to your server as to mysampledomain.net