The datadirectory tag has no wiki summary.
7
votes
2answers
4k views
Connection String to Connect to .MDF
I've created a new project in VS2008, and added a .MDF file to the project. This is the first time I've tried to use the MDF files and .SQLEXPRESS databases (I've always used extenal Oracle servers ...
5
votes
4answers
3k views
ADO.NET |DataDirectory| where is this documented?
In AppConfig it is possible to use |DataDirectory| but I can't find any doc ?
2
votes
1answer
1k views
SQL Server Compact 'Data Directory' macro in Connection String - more info needed
So, as described on this msdn page, when you define a Connection String for
SQL Server Compact 3.5, you can use the "Data Directory" macro, like this:
quote from this msdn page:
Data Directory ...
2
votes
2answers
846 views
how to use an mdf in App_Data with shared hosting
If I create a website that uses an mdf in App_Data with the connection string:
Server=.\SQLExpress;AttachDbFilename=|DataDirectory|mydbfile.mdf;Database=dbname; Trusted_Connection=Yes;
what do I ...
2
votes
1answer
212 views
Default MVC Web Application Database
When setting up a new ASP.NET MVC Web Application, the default connection string inside Web.Config is something like this:
connectionString="data source=.\SQLEXPRESS;Integrated ...
1
vote
1answer
63 views
in the default ASP.NET project created using VS2010, where is |DataDirectory| set?
I see the following connection string in the default web.config:
connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true"
...
1
vote
2answers
342 views
Specifying data directory for a specific database in mysql
I have a mysql database with 4 different databases. 1 of the databases has a lot of read/write activity that would benefit from being run on ramdisk. Due to the nature of the data layout and types of ...
1
vote
1answer
299 views
What's the difference between “Import Table address” and “Import Address Table address” in Date Directories of PE?
Anyone knows the difference?
1
vote
1answer
319 views
Using Database in Unit Tests
I was running into this error
An attempt to attach an auto-named database for file C:\<...>\Out\MessagesDB.mdf failed. A database with the same name exists, or specified file cannot be opened, ...
0
votes
0answers
13 views
Looking to change DataDirectory settings within code so only 1 mdf database file is accessed
I noticed that after adding a "service based database" mdf file and after setting up the tables, etc and adding code to the application forms, 2 copies of that database are created.
If I go to ...
0
votes
0answers
119 views
Facing errors when creating index
I've been facing trouble creating a first index for my table. Whether I do:
ALTER TABLE table ADD INDEX(column(4));
or
CREATE INDEX column ON table (column(20));
I get,
ERROR 1210 (HY000): ...
0
votes
0answers
131 views
create default MySQL database on Windows
I installed MySQL 5.5 on a Windows development machine, copied the database from the MySQL program directory to a custom location, and used a custom mysql.ini file to start the server. The dumps from ...
0
votes
2answers
320 views
mysql out of space error
I am getting this error from mysql
ERROR 20 (HY000) at line 1: Disk is full writing './homo_sapiens_core_60_37e/dna_align_feature.MYD' (Errcode: 28). Waiting for someone to free space... (Expect up ...
0
votes
1answer
62 views
Time out exception in 1st run for local DB
My connection string is like the following. It shows 'Timeout Exception' first time I run the application. But, for the subsequent run, it's ok. I think, it might take some time to attach the DB to ...
0
votes
3answers
191 views
sql exception when transferring project from usb to c:\
I'm working on a C# windows program with Visual Studio 2008. Usually, I work from school, directly on my usb drive. But when I copy the folder on my hard drive at home, an sql exception is unhandled ...
0
votes
2answers
740 views
Visual Studion 2008 App_Data defaults
Is it possible to use the App_Data folder in conjunction with SQL Server 2005?
When I try it specifies Express even though I have changed the Tools>Options>Database>Data Connections to the correct ...