Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
7answers
12k views

SQL Server, convert a named instance to default instance?

I need to convert a named instance of SQL server 2005, to a default instance. Is there a way to do this without a reinstall?
1
vote
1answer
47 views

structuremap does return named instance instead of default one

As the title says, structuremap does not return the default instance when i have also configured named instances. Here is my type registration: /// <summary> /// Initializes a new instance ...
1
vote
1answer
31 views

StructureMap Configuration Rewrite

I have the following STM configuration (only a part for simplicity): ObjectFactory.Configure(x => { ...
1
vote
1answer
119 views

Structuremap Open Generic named instances

I must do the following: var someType = ObjectFactory.GetNamedInstance("myNamedInstance"); where someType can be any implementation of ICommand. so I registered some of them: ...
1
vote
1answer
588 views

Can I modify package.xml file in SQL bootstrapper to install a named SQL server instance

I want to use the SqlExpress2008 Bootstrapper for a new installation on Windows7, I do not want to use the default SQLEXPRESS Instance. I have attempted to edit the package.xml file located in: ...
0
votes
0answers
33 views

sql server 2000 migration and consolidation

We had 20 production SQL 2000 server running on windows 2000 located having almost similar data . These servers are located in different location in USA. Last month we migrated these servers to ...
0
votes
1answer
90 views

How to add a named instance to a SQL Server that was installed with a default instance? [closed]

Possible Duplicate: change sql server instance name I installed SQL Server 2008 with a default instance, but now I want to add/change it to a named instance. Is it possible without ...
0
votes
1answer
1k views

SQL Server instance name with IP address

I have a very strange situation happening and I'm hoping someone here knows why. I have TCP/IP enabled for all ports on the default port 1433. All tests are consistent with SQL Server Management ...
0
votes
3answers
3k views

SQL - Connect to Linked Server with Named Instance

How do I connect to a named instance of a linked SQL server. If its not linked, I would do the following: ServerName.DatabaseName.dbo.TableName If it is linked, I would assume the following: ...