I've never had to do this, but when I downloaded the Web Workflow Approvals Starter Kit, it requested that I install the database into a User Instance of .\SQLEXPRESS.
Now the problem is, I've installed it onto a default instance, so I was wondering whether you can create a named instance on top of a default instance... and if so, how would you do that?
Cheers
Chris
hi Chris,
you can not create one as you intend, but you can install an additional named instance for that.. or, you can modify the connection strings in the application code to connect to
Data Source=(Local); .....; User Instance=true;
instead of
Data Source=(Local)\SQLExpress; .....; User Instance=true;
regards
|||Hi AndreaThanks for the tip... I always wondered what user instances were for...
Now I just have to uninstall & reinstall SQL and enable it.
Cheers
Chris
sql
No comments:
Post a Comment