Poglej prejšnjo temo :: Poglej naslednjo temo |
Avtor |
Sporočilo |
bostek99
Pridružen/-a: Sob Jan 2009 18:44 Prispevkov: 2
|
Objavljeno: Sob Jan 31, 2009 6:57 pm Naslov sporočila: problem z dostopom do baze |
|
|
Dal sem svoj projekt na hosting in ko hočem brat podatke mi vrže tale error:
Citiram: | Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. Please make sure the user has a local user profile on the computer. The connection will be closed.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
SQLExpress database file auto-creation error:
The connection string specifies a local Sql Server Express instance using a database location within the applications App_Data directory. The provider attempted to automatically create the application services database because the provider determined that the database does not exist. The following configuration requirements are necessary to successfully check for existence of the application services database and automatically create the application services database:
1. If the applications App_Data directory does not already exist, the web server account must have read and write access to the applications directory. This is necessary because the web server account will automatically create the App_Data directory if it does not already exist.
2. If the applications App_Data directory already exists, the web server account only requires read and write access to the applications App_Data directory. This is necessary because the web server account will attempt to verify that the Sql Server Express database already exists within the applications App_Data directory. Revoking read access on the App_Data directory from the web server account will prevent the provider from correctly determining if the Sql Server Express database already exists. This will cause an error when the provider attempts to create a duplicate of an already existing database. Write access is required because the web server accounts credentials are used when creating the new database.
3. Sql Server Express must be installed on the machine.
4. The process identity for the web server account must have a local user profile. See the readme document for details on how to create a local user profile for both machine and domain accounts. |
Pravice sem dal mapi App_Data:
domena.info Read Write
NETWORK SERVICE Read Write
Userja mam kreiranega in dodanega v conn string... pa še vedno ne vem v čem je problem... a morda kaj z bazo?
Connection string naj bi bil takole:
Citiram: |
<connectionStrings>
<add name="seznam_baza" connectionString="Data Source=./SQLExpress;Initial Catalog=baza;User ID=seznam;Password=seznam" providerName="System.Data.SqlClient" />
</connectionStrings>
|
Če pa se sedaj poskusim brat iz baze pa dobim napako:
Citiram: |
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
|
Sedaj to pomeni da še do baze ne more prit ne? |
|
Nazaj na vrh |
|
 |
slohosting Administrator

Pridružen/-a: Ned Dec 2003 11:43 Prispevkov: 219
|
Objavljeno: Ned Feb 01, 2009 12:56 pm Naslov sporočila: |
|
|
Povežite se na obstoječo privzeto instanco in ne ustvarjajte novih instanc, to vam je omogočeno samo na lastnem računalniku, kjer razvijate aplikacijo.
Ne uporabljajte XCOPY funkcionalnosti ! |
|
Nazaj na vrh |
|
 |
bostek99
Pridružen/-a: Sob Jan 2009 18:44 Prispevkov: 2
|
Objavljeno: Pon Feb 02, 2009 9:35 am Naslov sporočila: |
|
|
Hm... kaj točno mislite s to instanco? |
|
Nazaj na vrh |
|
 |
slohosting Administrator

Pridružen/-a: Ned Dec 2003 11:43 Prispevkov: 219
|
Objavljeno: Sre Feb 04, 2009 3:16 pm Naslov sporočila: |
|
|
Pravilen connection string:
<connectionStrings>
<add name="baza" connectionString="Data Source=.\SQLExpress;Initial Catalog=baza;User ID=uporabnik;Password=geslo" providerName="System.Data.SqlClient" />
</connectionStrings> |
|
Nazaj na vrh |
|
 |
|