|
Posted by Bryan on 11/07/24 11:57
Hi,
By chance are you using this connection string in a ASP.Net
application? This error message can usually be explained when a ASP.Net
website is not pointing at the root. ASP.Net is not keen on /.
If you are not deploying a .Net website then I'm blowed if I know :)
Thanks
Bryan
John Bell wrote:
> Hi
>
> Have you checked that the database does not already exist? I would suspect
> that the files are already attached and the first one failed because of
> that, and the second one failed because the name was in use.
>
> If you rename the file what happens?
>
> John
>
> <djamilabouzid@gmail.com> wrote in message
> news:1157324092.210067.151160@e3g2000cwe.googlegroups.com...
> Hi!
> I have some problems with ms sql server database connection. When I
> wrote
> the following function (in VB):
>
> sub Remplir_Theme()
> Dim connectionString As String = "Data Source=.\SQLExpress;
> AttachDbFileName=|DataDirectory|\BasedeDonnees_babySQL.mdf ;Integrated
> Security=true; User Instance=true"
> Dim sqlCon As new System.Data.SqlClient.SQLConnection
> (connectionString)
> sqlCon.open()
> Dim cmd as sqlCommand = new sqlCommand ("Select * from
> Table_theme;", sqlCon)
> end sub
>
>
> I Had this error (sorry it's in french)
>
> Server Error in '/' Application.
>
> --------------------------------------------------------------------------------
>
> Échec d'une tentative d'attachement d'une base de données nommée
> automatiquement pour le fichier
> c:\inetpub\wwwroot\App_Data\BasedeDonnees_babySQL. Il existe une base
> de
> données du même nom ou le fichier spécifié ne peut être ouvert ou
> il se
> trouve sur un partage UNC.
>
> When I created a folder named App_Data. and putting inside my mssql
> databse
> file, I had this error
>
>
> Server Error in '/' Application.
>
> --------------------------------------------------------------------------------
>
> Impossible d'ouvrir la nouvelle base de données
> 'C:\INETPUB\WWWROOT\APP_DATA\BASEDEDONNEES_BABYSQL.MDF'. Abandon de
> CREATE
> DATABASE.
> Échec d'une tentative d'attachement d'une base de données nommée
> automatiquement pour le fichier
> c:\inetpub\wwwroot\App_Data\BasedeDonnees_babySQL.mdf. Il existe une
> base de
> données du même nom ou le fichier spécifié ne peut être ouvert ou
> il se
> trouve sur un partage UNC.
> Échec de l'activation du fichier. Le nom de fichier physique
> 'c:\inetpub\wwwroot\App_Data\BasedeDonnees_babySQL_log.ldf' est
> peut-être
> incorrect.
> Impossible de reconstruire le journal lorsque le fichier principal est
> en
> lecture seule.
>
> Please, someone can help me !
>
> Thanks,
>
> Djamila.
Navigation:
[Reply to this message]
|