Creating database in ASP .NET

  • Thread starter Thread starter Robin
  • Start date Start date
R

Robin

When I try to create a new database, I receive the
following error:

"
ADO error:' [DBNETLIB][ConnectionOpen (Connect()).]SQL
Server does not exist or access denied
"

Any sugguestions??
 
How are you creating the database? With SQL? If so, the user may not have
proper permissions to create the database on the db server.
 
This means nothing more than your connection string is incorrect, your SQL
Server is down, or another network related issue is preventing contact (such
as IPSec rules or firewall rules).

See http://www.connectionstrings.com for help.

-Steve Jansen
 
Back
Top