Use this tag for questions specific to the 2012 version of Microsoft's SQL Server.
0
votes
1answer
66 views
Union Inside Where
I want to accomplish something like that:
SELECT QtdEmbarcados.Total FROM QtdEmbarcados, ProgramacaoBarcas
WHERE (
(SELECT * FROM
(
SELECT ProgramacaoBarcas.ViagemID, ProgramacaoBarcas.Data, ...
-1
votes
0answers
16 views
does free sql server management studio works with sql server 2012 developer edition on window 8 [closed]
At my work, we use SQL Server Enterprise which has management studio. For my home, I bought SQL Server 2012 Developer Edition thinking it's the same thing. I installed it on Window 8. I even ...
1
vote
1answer
49 views
SQL : strange behavior, deleting last related row on child table deletes row on father table
i have the following tFather and tChild tables:
IF OBJECT_ID('dbo.tChild', 'U') IS NOT NULL
DROP TABLE dbo.tChild
IF OBJECT_ID('dbo.tFather', 'U') IS NOT NULL
DROP TABLE dbo.tFather
CREATE ...
0
votes
0answers
13 views
Unknown stored procedure being called during update query
I've got SQL Server 2012 with a table having a field layout like this:
(UID bigint, Email varchar(64), Password varchar(64))
When I run a query like this:
Update *tablename*
Set ...
3
votes
1answer
43 views
Replicating from SQL to RavenDB
I know that RavenDB has a replication bundle, but that only seems to support replication from RavenDB into SQL server. I would like to do that the other way around. The only way I known to keep Raven ...
0
votes
0answers
18 views
SQL Server Remote Connection Issue with Pre-login Handshake
I have an ASP.NET web application and I am now looking to publish it online. The hosting company that I am working with provides a database and I should be able to access it remotely via SQL Server ...
1
vote
3answers
49 views
SQL Server - Finding the first day of the week
I've been looking around for a chunk of code to find the first day of the current week, and everywhere I look I see this:
DATEADD(WK, DATEDIFF(WK,0,GETDATE()),0)
Every place says this is the code ...
0
votes
0answers
23 views
Transactions and Entity Framework Pattern for Large Loads?
.NET 4.5/VS2012.
I am having a discussion about the pattern/placement of EF and Transaction code. The MSSQL 2012 database is called
almost exclusively via stored procedures, wrapped by EF. The ...
1
vote
0answers
36 views
.net framework execution was aborted by escalation policy because of out of memory
I am using Net framework 4.0 and Sql Server 2012 for the development. There is an error occurring randomly while performing database operation in the web application in asp.net. I have call some sql ...
-1
votes
0answers
10 views
SSAS Tabular Incremental Processing
I have a general SSAS 2012 Tabular question:
I have a table in Sql server called tblTest with 3 columns:
1. Id int
2. Name varchar(30)
3. ImportFlag tinyint default 0 -- 1.inserted 2.updated ...
0
votes
0answers
19 views
Update Multiple Values In Xml with .modify method
I have looked over release documentation for the 2012 SP1 release of Sql Server
and reviewed this old post.
TSQL 2005, XML DML - Update Two Values at once?
I am wondering is it possible to ...
-1
votes
0answers
21 views
Insert into FileTable from table via SQL query
I have FileTable I want to insert into file table from my ordinary table.
(I dont want to use copy paste solution.)
insert into FileTable
Select Picture from Photos
3
votes
2answers
46 views
Update XML stored in a XML column in SQL Server
I have a sample table in SQL Server 2012. I am running some queries against but the .modify() XQuery method is executing but not updating.
Here is the table
For this just trying to update settings ...
0
votes
0answers
14 views
Remove collation from all database columns [migrated]
I have a SQL Server database where the collation is set on it. However I am running into problems as the collation on some columns in the database varies from the database collation.
I would like to ...
0
votes
0answers
18 views
error when granting rights to server role
I am working with sql server 2012 - I have created a Server Role - XXXX and I want to grant execute priviliges to this role on a stored procedure. I am using this command:
GRANT EXECUTE ON ...
1
vote
1answer
22 views
SQL Server : Trigger After Insert?
Ok, my situation is like this:
I have a table named Company, and I want to add a trigger after every record I add in this table that checks if the column Name does not end with 'LTD' then add 'LTD' ...
2
votes
2answers
68 views
How to up load xml string to sql server
I have been trying to find the answer to this question for days but can not seem to get it.
I have an xml string obtained from a web service that I need to store in my sql server 2012.
the xml ...
2
votes
2answers
44 views
SQL Server : change column to not null in a very large table
I am trying to change a column to not null on a 3.5 gb table (SQL Server Express).
All rows contain values in the table.
I remove the check box from allow null and click save.
I get:
Unable ...
-4
votes
0answers
19 views
SQL Server lock waittypes [closed]
I use SQL Server 2012 and want to know sql server lock wait types and solutions to solve database lock for each type of lock.
0
votes
1answer
25 views
View in SQL server 2012 with datetime function
What happens if use SYSUTCDATETIME() in a view? Will the view work correctly? When will it execute the SYSUTCDATETIME function?
For instance I ve created a view from the following select
SELECT * ...
0
votes
2answers
65 views
How to calculate SUM balance of all accounts in T-SQL?
I have this table and data
CREATE TABLE #transactions (
[transactionId] [int] NOT NULL,
[accountId] [int] NOT NULL,
[dt] [datetime] NOT NULL,
[balance] [smallmoney] NOT NULL,
...
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
77 views
Data isn't retrieved from database (SQLCODE 100) even though data exists
I'm fetching data from my database where one of the conditions will always be the same, and the other one will have a value from 1 to 13. The query has to be executed 13 times, once for each value.
...
1
vote
1answer
31 views
Hashbytes MD5 syntax
Why do the hashed results below differ? Shouldn't they be the same?
SELECT [teststring]
, SUBSTRING(master.dbo.fn_varbintohexstr(HashBytes('MD5', [teststring])), 3, 32)
, ...
0
votes
1answer
44 views
SQL Server 2012: JOIN 3 tables for a condition
I have 3 tables: TABLEA (ID INT, name VARCHAR(2))
ID Name
01 A4
01 SH
01 9K
02 M1
02 L4
03 2G
03 99
TableB(Name VARCHAR(2))
Name
5G
U8
02
45
23
J7
99
9F
A4
H2....
TableC(ID INT, Name ...
2
votes
2answers
101 views
Where clause when using XML in SQL [duplicate]
I am currently using a XML data type in a SQL table
My datatable looks like this
Id | Name | Surname | Title | Location | Artist |
-------------------------------------------------------
1 | xxx ...
1
vote
2answers
46 views
SQL SERVER 2012 ColumnStore Index
When we create a columnstore index on a huge table,does it use a separate physical storage on disk to store the coulmn store index or it changes the storage structure of the base table from ...
0
votes
1answer
22 views
VarChar to NVarChar and back
The environment is SQL Server 2012. I'm about to change a clr procedure returned result column from varchar to nvarchar, but I'm not sure if the characters which can be found in varchar code page will ...
0
votes
2answers
32 views
TSQL find records with different writing in another table
I have a "MasterTable" with the following records:
MasterTable:
Col1
PX02894
PX02895
PX02896
PX02897/98
From the lookup table I want to get the Col2 links, keeping the formatting of the ...
-1
votes
1answer
67 views
SQL Trigger not firing on update
I have following trigger which should insert records in a junction table when an entry is updated in main table. but this trigger is not firing ( It was firing earlier)
CREATE TRIGGER ...
1
vote
0answers
46 views
C# SQL Generator to execute the new T-SQL Window Functions in SQL Server 2012?
I'm looking for a SQL Generator that can execute the new window aggregate functions that were released in SQL Server 2012. I've already looked at Subsonic and LINQ, but haven't yet taken a look at ...
-1
votes
0answers
24 views
Insert a file into a directory stored in filetable via SQL query
I have a directory stored in a file table . Now I want to insert a file into that folder.
Is there any one to help me about this ?!
0
votes
1answer
43 views
Database Not Exist, but it is exist at there
at my project having 2Databases and my server is using SQL Server 2012 Management Studio. And now i would like to connect to one of the database and made a new table in runtime.
But i'm having a ...
-1
votes
0answers
20 views
Where is the ideal place to install SSIS? [closed]
We're currently working on building out a new data warehouse and I'm looking for resources or best practices on where SSIS is should ideally be installed. My thoughts are as follows, but I'm really ...
0
votes
0answers
20 views
Why does installing SSDT 2012 install Enterprise Library 4.1 assemblies?
Does anyone have any idea why, when I install the SQL Server Data Tools for SQL Server 2012, it adds the following assemblies from Microsoft Enterprise Library 4.1 to the GAC?
...
0
votes
2answers
29 views
exists() condition performance issue
I'm confused...
I have simple SQL query (see below) that runs indefinitely long (I was not able to wait for its completion)
if exists(
select 1
from [files].[Contacts_Migration_Template] c ...
0
votes
1answer
59 views
Variables in queries in stored procedures on SQL Server - how?
I am working on some pretty long and complicated procedure in T-SQL where I need to use quite a lot variables in queries.
I got stuck on something like this:
SELECT @TableSQL = 'SELECT '
...
0
votes
1answer
55 views
TSQL Sum by group for monthly reports
I'm in the process of trying to produce a report (monthly, year to date, etc) on a group of shipping entries in our database to show correct sums as well as group them by shipping company. How can I ...
0
votes
1answer
30 views
Getting “Cannot find the type nvarchar(MAX)” when adding new CLR user defined function
I have created a new function in an assembly which has been successfully added as a CLR Assembly to my sql server. Now I am trying to create a Sql user defined function to map to the new method in ...
0
votes
2answers
21 views
New database or index key for each client?
We are currently building a web application using ASP.net and Microsoft SQL Server 2012.
Each of our customer will have the ability to add other customers below them.
Our Company
--> Our Customers
...
-1
votes
0answers
26 views
which edition of sql server is good for Handling Multiple Database(users) [closed]
My query about sql server 2008 Edition ,
I want to know about which sql server edition is good for on VPS hosting (which host to many web application/website which have sql database...)
I think the ...
0
votes
0answers
28 views
How i can map a selected field into domain properties with LINQ To Entity
I use C# And EF5 CodeFirst. Sql Server 2012 And VS2012
I have multiple domains in the form below in Entity Framework.
public class Subscribe : BaseEntity
{
public Subscribe()
{
...
0
votes
0answers
20 views
Error in SSAS 2012 when opening project in SQL Server Data Tools
I got following error in event viewer when opening a tabular project in SQL Server Data Tools:
The description for Event ID 25 from source MSOLAP$LocalCube cannot be
found. Either the ...
0
votes
2answers
50 views
How to get all the columns of the MS SQL including view columns as well
I'm trying to write a SQL query that will output all the columns in tables and views.
The query below returns just table columns and doesn't include view columns
SELECT t.name AS table_name, ...
0
votes
1answer
35 views
How can I use LTRIM/RTRIM to search and replace leading/trailing spaces?
I'm in the process of trying to clear out leading and trailing spaces from an NVARCHAR(MAX) column that is filled with prices (using NVARCHAR due to data importing from multiple operating systems with ...
0
votes
1answer
41 views
Unique ID base on other column
DROP TABLE #ABC
CREATE TABLE #ABC (ID INT NOT NULL, Name VARCHAR (2) NOT NULL, name2 VARCHAR(2))
INSERT INTO #ABC (ID, NAME)
VALUES (1,'01'),(1,'F5'),(1,'05'),(1,'08'),(1,'02'), (1,'03'), (1,'04'), ...
0
votes
0answers
25 views
Performance gain for proximity search by switching to spatial SQL Server queries?
I have a database of Lat/Long points represented in separate columns as regular doubles, and I want to search for them in a bounding box range.
What would be the performance gain by switching to the ...
0
votes
1answer
86 views
Linq Time(7) and TimeSpan Mapping
I'm trying to insert a record to my table called Test , I'm using the LINQ technique :
The problem is I have a time column in my table with type of Time(7) but when I try to insert data to table I ...
1
vote
1answer
43 views
Select MAX and add 1 (SQL Server 2012)
DROP TABLE #ID
CREATE TABLE #ID (ID INT)
INSERT INTO #ID (ID)
VALUES (24),(65),(77),(44)
DECLARE @ID int
SELECT @ID = MAX(ID) from #ID
DROP TABLE #name
CREATE TABLE #NAME (Name char (20))
INSERT ...
0
votes
0answers
20 views
MsSql Invalid Object Name
MsSql error say Invalid Object Name for my query but same query running another same copy database. I think very interesting.
My query like this;
exec sp_executesql N'SELECT * FROM [dbo].[VwSysUser] ...





