Microsoft® SQL Server® 2012 Express is a powerful and reliable free data management system that delivers a rich and reliable data store for lightweight Web Sites and desktop applications.
0
votes
0answers
12 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.
What I can't figure out is, is it sufficient for the PC on which the application is compiled to have .net 4.0.2, and the users of the ...
0
votes
1answer
26 views
SQL Server 2005 mdf file on 2012
I have a SQL Server 2005 .mdf file I need to install on a server. Can I simply install SQL Server 2012 Express and attach the .mdf file without any issues, or should I stick to 2005 Express to ...
1
vote
1answer
46 views
IN operator not finding matches
I am not able to select values with IN clause using single quotes. The pid column is varchar(50).
select * from t_tra_main where pid in (200000002,300000394,200000004,
...
0
votes
1answer
26 views
Entity Framework - Eager Load Related Entities' Related Entity
I'm writing a simple database application in C# (.NET 4.5) with Entity Framework 5. I have a situation where I may or may not need to load a single entity's related entities. If it happens that I ...
13
votes
4answers
344 views
Deleting a large number of records takes a VERY long time
I have a database table (running on SQL Server 2012 Express) that contains ~ 60,000 rows.
I am using the following code to purge old rows:
//Deleting CPU measurements older than (oldestAllowedTime)
...
0
votes
1answer
56 views
Copy SQL server database with .bak
I'm trying to copy a SQL Server database in VBA (MS-ACCESS).
So I got this query to create the .bak
DECLARE @name VARCHAR(50) -- database name
DECLARE @path VARCHAR(256) -- path for backup files
...
-11
votes
0answers
62 views
How to get the true result from my tables? [closed]
I have the following query which does not give the expected result:
SELECT "invoice"."ITEMNO",
"invoice"."Outgoing",
"storeage"."incoming"
FROM "MVXJDTAP"."MVXJDTA"."invoice"
INNER JOIN ...
0
votes
1answer
69 views
Implementation of SQL snapshot function in SQL Express 2012
I try to create a SQL Server database snapshot (MSSQL EXPRESS 2012 SP #1) from Delphi (XE2) code. The code is executed without any problem but actually no snapshot file is created
Code example :
...
1
vote
3answers
64 views
Allow remote connection only for specific users
I just enabled remote connections on my SQL Server Express 2012 installation. Now I am a little bit worried about the server security because allowing connections to everybody sounds like a big ...
1
vote
1answer
113 views
ColdFusion 10 Administrator, MS SQL 2012 and Windows 8
I've been trying to add a datasource in the ColdFusion Administrator for Windows 8 and I've been having many issues.
Below is what I've done:
Database created "onessBlog".
Login created onessBlog ...
1
vote
1answer
118 views
“Invalid column name” error when calling insert after table created
I'm developing SQL script, using SSMS, which makes some changes in database:
USE MyDatabase;
BEGIN TRANSACTION;
-- some statements
PRINT(N'#1');
IF (EXISTS (SELECT * FROM ...
0
votes
0answers
74 views
SQL Server 2012 Express Compatibility with Windows SBS 2011
I've got a problem about the setup of SQL Server 2012 Express on a server within Windows SMS 2011 Standard.
Normally, this version of SQL Server is supported ...
-1
votes
3answers
65 views
Msg 4104 using INNER JOINS - SQL SERVER 2012
I have these tables:
I am trying to get the article_id, article_name, article_title, article_description and article_date from articles and username from users by using a connecting table, ...
1
vote
1answer
73 views
Auto-computed column in SQL Server 2012
Is it possible for a column in to be auto-calculated by SQL Server 2012 itself?
For example: I have three columns START_DATE, END_DATE and DURATION.
I want to get the duration by doing this :
...
0
votes
1answer
62 views
Automate using SQL Express to export to Excel (not CSV)
I need to export about 20 different query results into one Excel file in seperate tabs.
I know we can use SSIS pacakage but as I am using express addition it will not let me save it. As I will be ...
0
votes
1answer
95 views
sql server restoring back up error
I have backed up a database I had created on an other machine runningn SQL server 2012 express edition and I wanted to restored on my witch is running the same and I have ticked the checkbox ...
0
votes
0answers
25 views
Installing Microsoft SQL Server 2012 SP1 halts
I am trying to install Microsoft SQL Server 2012 SP1 SQLEXPRWT_x64_ENU.exe from here
Setup starts perform initial check up. When it starts installing SQL Server support files. It just keeps on doing. ...
0
votes
0answers
207 views
Issue while installing SQL Server 2012 Express from Inno Setup
I am installing SQL Server 2012 Express and creating an instance if the SQL Server engine is installed. I am using Configuration File for installing SQL Server.
Here is a line where error occurs:
...
0
votes
1answer
118 views
Can't access the SQL Server engine even from Management Studio
I just installed SQL Server 2012 Express edition on my computer (Windows 8).
When I try to create a database from the Management studio, I'm getting the following error:
Create failed for ...
1
vote
2answers
122 views
Trouble installing SQL Server 2012 Express with Advanced Services
Whenever I try to install SQL Server 2012 Express with Advanced Services I am getting this error:
I have tried both version (32-bit/64-bit) and re-downloaded multiple times.
How can I solve it ?
0
votes
1answer
54 views
Best way to execute table compaction algorithm on SQL Server 2012 Express
Let me start by saying that I have limited SQL experience but I have searched for a few days to find a good solution to my problem and I haven't found it yet. If an obvious answer exists I haven't ...
0
votes
3answers
282 views
Get .sql file from SQL Server 2012 database
I need to get .sql files from an existing database with SQL Server 2012. Is this possible because all I see in the export option is delimited files.
Ex.) I have table1 with 30 records. I need a ...
0
votes
0answers
36 views
Database Configuration Option is not shown while installing SQL Server 2012 Express edition
I am trying to install SQL Server 2012 Express edition on my computer. While installing it, installation doesn't asks me Database Engine Configuration Option (authentication mode) where I can specify ...
-1
votes
1answer
30 views
AdventureWorks2012: For each customer, determine the number of orders created in year 2007. Show 0 for no order of that customer.
AdventureWorks2012: Sql For each customer, determine the number of orders created in year 2007. If a customer has not created any order in year 2004, show 0 for that customer. Show: customer ID, # of ...
0
votes
1answer
22 views
When WebSecurity fails a login, it stores the LastPasswordFailureDate as being wrong by 11 hours
It's currently 12:56am, 29/3/2013 (Australia).
When I get a username/password combination wrong, the database reports that the last login failure is
2013-03-28 13:56:18.517
It's behind by 11 ...
0
votes
2answers
284 views
ASP.NET - VB.NET - SQL Server Express 2012 - Storing dates
I'm trying to get the selected date from the Calender Control and store it to a column in the DB.
I'm getting the following error:
SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and ...
0
votes
1answer
189 views
SQL Server 2012 Developer Default Instance not working
I just installed SQL Server 2012 developer edition with a default instance of MSSQLSERVER.
The problem I'm facing is when I launch Management Studio and connect using the server name - ...
0
votes
0answers
39 views
try_convert or convert not working for mm/dd/yyyy in sql server 2012
I am using SQL Server 2012 Express and I want to covert date in mm/dd/yyyy format.
I have used these queries but they give me output as: 03-24-2013 but I need it in this way 03/24/2013:
select ...
3
votes
1answer
142 views
Create filtered index not working in SQL Server 2012 Express
I'm trying to create a filtered non-clustered index. In the gui I right-click the Indexes folder of the table where I want the index. Add the column where the index should be applied, then click on ...
0
votes
1answer
102 views
VS2012 and SQL Server Express
I learnt that VS2012 comes with a version of SQL Server Express named LocalDb that works a little bit different from the usual SQL Server Express, the latter one works as a service.
What if I was ...
2
votes
1answer
40 views
Can't browse all the table
I have problem with the Entity Framework ver. 5 ConnectionString with ADO.NET Entity Data Model. When I use the generated connectionString with Username and Password I can't map/browse all the table ...
0
votes
1answer
39 views
sql server 2012 Before the move
CODE :
SELECT YEAR_ID, Count, ThreeYEARAverage,
AVG(Count) OVER (ORDER BY YEAR_ID ROWS 4 PRECEDING) AS FiveYEARAverage
FROM (SELECT YEAR_ID, ISNULL(Count, 0) AS Count,
...
0
votes
1answer
79 views
What is the meaning of 'LocalDb'?
I learned is that in order to connect to SQL Server Express 2012 I have to use the instance name "(LocalDb)\v11.0".
Is this localDb a special db for local developmnents or is it the exact equivalent ...
0
votes
0answers
221 views
Can't create connections to SQL Server
I just installed VS2012 Ultimate in my new machine (Windows 7 Ultimate), now I found out that I can't add new connections to SQL Server, it says that .\sqlexpress was not found.
It's as if the VS2012 ...
0
votes
1answer
195 views
Visual Studio 2012 and SQL Server Express
Is it possible that the Visual Studio Ultimate that was installed in my machine didn't include SQL Server Express, they didn't turn any option off when installing, they simply installed it following ...
2
votes
1answer
41 views
Setting NOCOUNT status with local variable
I'm trying to store the NOCOUNT status so that I can return it to its original state at the end of my procedure, but all it does is give me an Incorrect syntax near 'NOCOUNT'. error.
What am I doing ...
0
votes
1answer
585 views
Import Excel 2010 into SQL Server
I use Excel to collect & configure data, then import it into SQL Server 2012 for storage.
So far I've been using the SQL Server Import & Export Wizard, but it is a pain to manually set it up ...
0
votes
1answer
224 views
CONTAINMENT is marked as incorrect syntax on auto-generated database script
I'm using Windows 7 (x64) and I have an auto generated script for creating a SQL Server Express 2012 database.
The script starts as follows:
USE [master]
GO
CREATE DATABASE [Example]
CONTAINMENT ...
0
votes
1answer
255 views
SQL server cannot be connected
I am developing an Asp.net MVC4 application wherein i am using SimpleMemberShip provider for authorization and i am using database MSSQL Server 2012 on the same machine.
When i openup the SQL server ...
0
votes
2answers
653 views
SQL Server 2012: Login to PC-NAME\SQLEXPRESS works, but not to local/(local)
I'd like to login to my SQL Server 2012 Express with servername local or (local) but it doesn't work.
The only servername which works is PC-Name\SQLEXPRESS.
local/(local) has to work somehow because ...
-3
votes
1answer
218 views
Download SQL Server 2012 trial version [closed]
I want to download sql server 2012 trial version.
I went to Microsoft site and find lot of option like Enterprise, Business Intelligence, Standard and SQL Server 2012 SP1.
Can any one tell me which ...
0
votes
1answer
506 views
ASP.NET MVC 4 C# - Internet Application Template using default SimpleMembership, Error: System.Data.SqlClient.SqlException: Login failed for user xxx
I am running the application locally (localhost), and since I have already registered, I log in properly and then can navigate regularly through all the pages of my application. Then without logging ...
0
votes
0answers
109 views
couldn't able to generate ouput.txt file when batch file run from task scheduler
i couldn't able to generate ouput.txt file when batch file run from task scheduler. my batch file code is given below.
OSQL -S %DBSERVER% -d %DBNAME% -U %DBUSER% -P %DBPWD% -i "D:\Batch ...
0
votes
3answers
59 views
Referring to a table by variable
I'm sure this is pretty basic, but how do I set up an INSERT statement using a variable for the table name?
For example, I have a number of input files, all configured identically (Input1, Input2, ...
-1
votes
2answers
198 views
SQL Server 2012 Error 26
I downloaded SQL Server 2012 Express. Using http://www.mssqltips.com/sqlservertip/2694/getting-started-with-sql-server-2012-express-localdb/. I created a local database. Now when I tried to connect to ...
0
votes
0answers
108 views
LINQ context refresh bug
I have LINQ to SQL classes and a DataGrid control. I set the DataSource of the DataGrid to context.Users and then I add user using context.Users.InsertOnSubmit(). However, DataGrid does not refresh ...
2
votes
2answers
367 views
SQL Server 2012 Express, Connection error 26, Local connection
I am working locally on new laptop (windows 8 x64) with SQL Express 2012 SP1 x64, and I get the following connection error:
A network-related or instance-specific error occurred while establishing ...
-1
votes
1answer
75 views
sql server 2012 express email [closed]
I downloaded the sql server express 2012 server. Express server does not have the email option so I coppied the email dll's to it. I can send an email when I call the sp in sql server. Also if I debug ...
1
vote
2answers
170 views
MERGE keeps trying to insert null
When I run this, I keep getting:
Msg 515, Level 16, State 2, Line 8
Cannot insert the value NULL into column 'uNSID', table 'Flickr.dbo.User_Grps'; column does not allow nulls. UPDATE fails.
...
1
vote
1answer
41 views
Conditional Joins to intermediate file MS Server 2012 Exp
My database has 3 tables:
[Groups] - information on specific groups,
CREATE TABLE [dbo].[Groups](
[Prime_ID] [nvarchar](20) NULL,
[Name] [nvarchar](100) NULL, -- there are a number of other ...




