LocalDB is a lightweight deployment option for SQL Server Express Edition with same features but with a simple installation. It is not not intended for multi-user scenarios
0
votes
0answers
13 views
Can't connect to local SQL Server DB when I have no internet connection
If I have an internet connection my local website connects to my local database just fine. I am wanting to work remotely without internet connection... How can I set things up so that I can connect?
1
vote
2answers
21 views
Limit the database size with SQL Server Express LocalDB
I'm creating a database for system that has a small (16Gb) hard disc. I would like to limit the size of the database to 512Mb so that I still have room on the disc for other applications.
I'm having ...
0
votes
0answers
20 views
Azure storage emulator cannot connect to LocalDB
I have a problem with the Azure storage emulator, which refuses to connect to LocalDb. It used to work just fine before I created an ODBC connection to it using the named pipe. What happened:
I ...
0
votes
0answers
16 views
How to generate database LocalDB with NHibernate
'm having trouble creating a test that generates the database
I read several articles about using Instance pipe name. But I do not know how to use!
Project
It follows the structure of my app
...
0
votes
0answers
18 views
Does the end-user require .net 4.0.2 to run an application that uses LocalDB?
I have read that SQL 2012 LocalDB Requires .net framework 4.0.2.
I am researching possible deployment options for my client-server application with a winforms frontend.
What I can't figure out is, ...
0
votes
0answers
21 views
Setting database name in EF config section for localdb
Entity Framework supports two locations to specify database configuration in app.config. If I add EF5 nuget package to a console app, the app.config contains following markup:
<entityFramework>
...
0
votes
0answers
20 views
Trying to share name LocalDb instance with LOCALSYSTEM and failing - why?
I'm trying to share a named instance of LocalDb. I made a beginner's mistake but I have one final question. I'll leave the updated version of this question below in case it helps anyone else.
Final ...
-2
votes
2answers
66 views
Can't create an index catalog in localdb v\11.0
SQL statement:
CREATE TABLE [dbo].[indexTable] (
[mapId] VARCHAR (50) NOT NULL,
[keyword] VARCHAR (900) NULL,
PRIMARY KEY CLUSTERED ([mapId] ASC)
);
Go
CREATE FULLTEXT CATALOG ...
-1
votes
1answer
41 views
Get filepath to LocalDB file from connection string in .NET [duplicate]
How to get the filepath to the .mdf file of a LocalDB database from its connection string in .NET?
Example string:
Data Source=(LocalDb)\v11.0;Initial Catalog=MyDb;Integrated ...
0
votes
0answers
39 views
Transactional Replication with LocalDB
I searched everywhere but couldn't find an answer. I know LocalDB cannot be a subscriber to merge replication. But what about transactional replication?
I've tried both the SQL Server Management ...
2
votes
0answers
74 views
Entity Framework 5 always try to connect to sqlexpress instead of local db
I'm using Visual Studio Express for web to follow this tutorial http://msdn.microsoft.com/en-US/data/jj193542.
The tutorial tells that
By convention DbContext has created a database for you.
...
0
votes
1answer
27 views
How to detach a LocalDB (SQL Server Express) file in code
When using LocalDB .mdf files in deployment you will often want to move, delete or backup the database file.
It is paramount to detach this file first as simply deleting it will cause errors because ...
0
votes
0answers
38 views
need direction, sql server data to jquery json?
my job start to another field.
and now i have geo data in sql server, hmm localdb.
but i dont know even any clues how to get data in this localdb in json, and i can read this geojson using jquery.
...
0
votes
1answer
197 views
How can i change the default database for simple membership tables
I would like to ask this quick question about the default simple membership database that comes with asp.net mvc 4.5 internet application , my question is about where does it create its tables when I ...
0
votes
1answer
102 views
Cannot connect to named shared LocalDB instance
I spent hours on this with no success. Any help appriciated:
I create LocalDB instance
sqllocaldb create test
i start that instance
sqllocaldb start test
i share that instance with same user ...
0
votes
0answers
43 views
Can I uninstall/remove SQL Server 2008/2008r2 after installing SQL Server 2012?
I just finished installing SQL Server 2012 and I was wanting to take advantage of Localdb. I chose not to upgrade my SQL Server 2008 R2 and to install 2012 as a new instance. Unfortunately, I realized ...
0
votes
3answers
67 views
failure deploying LocalDB app to Arvixe
I'm trying to deploy a WCF Data Service to Arvixe. The data service is built on Entity Framework 5 and Data Services 5.4. It creates a fair number of LocalDB databases (named according to runtime ...
0
votes
0answers
95 views
SQL Server LocalDB
I'm looking for a better alternative to MS Access MDb files. MS SQLServer 2012 LocalDB looks like the perfect solution. I've done some testing and it seems to do the trick.
What I need to find out is ...
0
votes
3answers
60 views
How to share a LocalDB instance across all projects in a solution?
I have a VS 2012 solution setup like this:
EF Model Project
EF Model Test Project
ASP.NET MVC 4 Application
WCF Data Services Project
During development i want to use LocalDB as the backing ...
0
votes
1answer
80 views
How to share SQL LocalDb with other users on same machine?
I am looking for ways to access LocalDb database between users using the share command of sqllocaldb command utility but I cannot see the database created in one user in another.
Here are my steps:
...
1
vote
1answer
117 views
How to move SQL LocalDB 2012 system database on different drive?
By default, SQL LocalDb creates all the system database under C:\Users profile.
I need all the databases including (system databases master, msdb etc) on D:\drive.
I know I can create User databases ...
0
votes
1answer
57 views
How to manually create a mdf file for localdb to use?
I'm setting up some unit tests for testing work done with a database. I would like to use localdb v11 but first I need to create the database. How exactly do I do this?
simply connecting to ...
0
votes
1answer
45 views
How to add SQL LocalDB permissions
I.. "accidentally" removed my database permissions for my windows login to localdb
Any idea how to give permissions back to that database?
0
votes
3answers
44 views
what join is caused by “and”? [duplicate]
I have a localDB database that includes the following tables:
UserProfile, which contains:
UserId UserName
1 Adam
webpages_Roles, which contains:
RoleID RoleName
1 user
2 ...
0
votes
0answers
152 views
LocalDB works fine in Visual Studio IIS, fails when deployed to full IIS
I have a code first localdb database in my MVC 4 project and if I run the application in Visual Studio 2012 it connects fine and everything works. When I publish to my full IIS and access the site the ...
0
votes
0answers
37 views
Best way to manage large amount of application configuration data
I currently have a .NET application with a large amount of configuration data that is stored in dozens of .xml files with different schema. I am wondering if there is a better way. This is a desktop ...
0
votes
0answers
53 views
SQL Server 2012 SQLProject won't build when adding Geography query
I have a stored procedure that I am writing as a mock up for linking existing user gps to a road network I have uploade.. I have loaded southern california osm file into SQL Server 2012 ...
1
vote
1answer
336 views
Export a SQL Server Express DB to a .SDF file (Local DB)
I have a couple DB on my server, that I would like to export to my laptop for developing against when on the road on offline.
I have a SQL Server 2008 database that I would like to export to a .SDF ...
0
votes
1answer
49 views
IIS applicationHost 'setEnvironment' attribute
<add name="ASP.NET v4.0" autoStart="true" managedRuntimeVersion="v4.0" managedPipelineMode="Integrated">
<processModel identityType="ApplicationPoolIdentity" loadUserProfile="true" ...
0
votes
1answer
159 views
Determine if SqlLocalDB is installed
I am searching for a way to determine in WiX if SQLLocalDB is installed or not. How can I do this? - Can I check a registry-key? - When yes, which key?
0
votes
0answers
21 views
dbload server explorer access
I'm trying to follow the SportsStore example in Alan Freeman's excellent "Pro ASP.NET MVC 4" book. He does all his examples using VS Express for Web which I have installed on my Surface Pro.
I'm ...
2
votes
1answer
170 views
How do I connect to an older sql database using LocalDb in VS 2012?
I am trying to construct a connection string to a 2008 SQL Express database file in VS 2012. I am getting an error dialog:
This database file is not compatible with the current instance of SQL
...
0
votes
1answer
96 views
What does “The ”DataDirectory“ registry value is missing in the LocalDB instance registry key” error mean?
I have a MVC4/ASP.Net application that uses localdb. Everything "appears" to work correctly. However I am getting loads of errors in my event log:
The "DataDirectory" registry value is missing in ...
0
votes
1answer
246 views
How to restore SQL Server 2008 R2 backup to a LocalDb 2012
I have a backup of a database (.bak) created in SQL Server 2008 R2.
To test some features, like to import this backup to LocalDB (2012).
When I click on Restore and select the database the ...
1
vote
1answer
142 views
Deploy SqlLocalDB.msi with wix
I want to use SqlLocalDB for my application. The application is deployed with WiX. Now, I am searching a way to install SqlLocalDB when my application is installed for the first time. How can I do ...
0
votes
2answers
162 views
Setup project for small wpf app and localdb
I built a small project that uses LocalDB, now it's time to move it to the customer, I want to understand how to build the Setup File?
I tried with the InstallShield software as normal but without ...
0
votes
1answer
274 views
Entity Framework code first and membership tables on LocalDb
1. If I create new MVC project it has default connection string :
< add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;Initial
...
1
vote
1answer
194 views
Exception when connecting to database on client machine
I have created a WPF application which used entity framework and SQL server 2012 for database. It runs fine on my machine. But when I ran this on client machine I received exception. This happens when ...
1
vote
1answer
307 views
How to determine LocalDb instance name in SQL script?
For a non-LocalDb SQL Server, I can SELECT SERVERPROPERTY('ServerName') to get the name of the server and the instance that I'm running on. For a LocalDb server, however, I get ...
1
vote
1answer
87 views
Using LocalDB on Windows Azure VM
I have been reading about LocalDB and how it can not be used in Azure Roles (since they do not persist if the role stops working) and that you should move towards either Azure SQL or Azure Storage.
...
1
vote
3answers
198 views
“Server” vs “Data Source” in connection string
I'm new to SqlServer, right now I have SqlLocalDb installed to work locally. Good, but I can see two connection strings typically and both works:
Data Source=(localdb)\v11.0;Integrated Security=true;
...
0
votes
1answer
164 views
LocalDb and SMO - how to choose where to put database files?
I've started to experiment with the SQL Server 2012 feature LocalDb. I'm doing some powershell scripting with SMO against the instances I create, such as creating databases. To do this, I have this ...
1
vote
1answer
419 views
Visual Studio 2012 Code First still uses SQLEXPRESS by default
I created a brand new Web API project, created a simple Code First model (one class with an id and the dbcontext object, and that's it), and ran Enable-Migrations in the package manager console.
I ...
0
votes
1answer
215 views
Delete localdb in Entity Framework Code First
I am writing some UnitTests with NUnit and Entity Framework.
How to delete the whole localdb database from Entity Framework level?
Note: I don't want to clear the tables' data. I want to delete the ...
0
votes
0answers
100 views
I have a WCF service through it i need to sync the webserver database with the local database in my WP7
I have a WCF service through it i need to sync the webserver database with the local database in my WP7.
I want the updated rows in the server database to sync with localdb.
Only selected tables, ...
-2
votes
1answer
64 views
Is LocalDb available for commercial usage? [closed]
Is LocalDb available for commercial usage?
If yes, I want to know if it will be necessary on user's machine (where localdb would be installed) do some administration work? (for quick example - do ...
0
votes
1answer
441 views
The underlying provider failed on ConnectionString (|DataDirectory| and LocalDB)
I'm getting the exception
The underlying provider failed on ConnectionString.
with inner exception
Invalid value for key 'attachdbfilename'
on a windows 7 home premium virtual machine as ...
0
votes
0answers
126 views
EF codefirst - LocalDB is not populated
I'm using EF with codefirst and LocalDb. The code below is not exactly mine, but I've found that it reproduces the same problem.
After the fisrt run I open the localDb file with Visual Studio and ...
-1
votes
2answers
118 views
SQL Server light-weight editions [closed]
I’m developing an ASP.NET MVC application that is using a LocalDb database. This app also needs to have a corresponding Windows service that runs all the time. After much research, it looks like ...
4
votes
1answer
137 views
How to change the default connection to a server in Visual studio 2012 SQL Project?
In visual studio 2012 sqlproj, the default connection button always connect to the (localdb)\Projects by default. How do I change that? Every time I need to disconnect and connect again to change the ...

