SQL Server is a relational database management system from Microsoft. Use this tag for all SQL Server editions including Compact, Express, Azure, FastTrack and PDW.
1
vote
4answers
60 views
How max() function works in SQL-Server?
I want to find maximum column value, i says:
SELECT
Segment_ID.Segment_ID,
Intensity.Date,
Intensity.NumAll,
Intensity.AverageDailyIntensCar,
MAX(Intensity.AverageDailyIntensCar) as maxvalue,
...
1
vote
0answers
25 views
MSSQL CTE tree with filter how to?
There's a table that describes object hierarchy and their type:
DECLARE @TTable TABLE
(
ID int
,Higher int -- for some reason this is how ID_PARENT named
,[Type] int
)
I need to select a subtree ...
0
votes
0answers
16 views
Running stored procedure by SQL job with Linked Server query error 7391 [migrated]
I create stored procedure which query data from Linked Server to insert into current server.
I test this stored procedure by directly execute, it's work fine.
I have to run this stored procedure ...
-1
votes
1answer
33 views
COALESCE in MySQL returning conversion failed
I am trying to execute coalesce as nvl in oracle.
SELECT COALESCE('SYSTEM ADMIN',10)
ideally it should return "SYSTEM ADMIN" AS OUTPUT.
SELECT COALESCE(NULL,10)
And this should return 10.
but ...
0
votes
6answers
61 views
How to create a table from select query result in SQL Server 2008
I want to create a table from select query result in SQL Server, I tried
create table temp AS select.....
but I got an error
Incorrect syntax near the keyword 'AS'
1
vote
2answers
35 views
how to get/set value in the middle of between date range in SQL Server 2008 R2
my HR project have one table with field:
EmpName(nvarchar(50)),LeaveType(nvarchar(10)),FromDate(datetime),ToDate(datetime)
and sample data entry below:
EmpName LeaveType FromDate ToDate
AA ...
0
votes
0answers
42 views
Importing 10000 rows to Solr fetches hundreds of thousands of rows
I'm trying to import five or so tables from MS SQL Server 2005 to Solr 4.3.0 on Ubuntu. Ultimately I want to import all the rows in each table, but for now I'm using "top (10000)" to limit my import ...
0
votes
1answer
28 views
User Structure, Multiple User Types
I am currently developing a new database / web application for our school. I will need to supply a little bit of background information to make my question a little more relatable.
There are many ...
0
votes
0answers
56 views
Getting the difference
Can you please help me with this?...
I have a maintenance table named ticket table and a transaction table called workplan.
Ticket table contains tickedID, ticketName, startdate, estimated time of ...
0
votes
1answer
39 views
SqlDataReader.Read Not Working As Advertised?
So I'm running a query in ADO.NET that I know returns a single row. The relevant portion of my code looks like:
SqlCommand sqc = new SqlCommand();
sqc.Connection = new SqlConnection("connection ...
1
vote
2answers
16 views
Find all “null” values using xquery
I was tasked to find all values where <nodeA> is empty. That could mean that it is NULL, or that it doesn't exist.
I have crafted the below query
SELECT *
FROM table
WHERE AttributeList.value ...
0
votes
0answers
19 views
SQL XML Bulk Load Error when I try to create and populate database table
I´m working with XML data which have lot of XSD files. To load this data to database (I need to create tables from XSDs) I cannot use, xsd2DB (because the XSDs contain union and list), neither SSID ...
0
votes
2answers
65 views
Replacing JSON Formatted String in SQL
I have a something like this in my table column:
{"InputDirection":0,"Mask":"AA","FormatString":null,"AutoCompleteValue":null,
"Filtered":"0123456789","AutoComplete":false,"ReadOnly":true}
What I ...
0
votes
2answers
38 views
How to recursively update a table with a stored procedure
I have a stored procedure that selects some data in a different format from my original table:
USE [VolTracker]
GO
DECLARE @return_value int,
@offset int
SET @offset = 5
WHILE @offset ...
2
votes
1answer
46 views
join with earliest child record
I have a MS SqlServer 2008 database with two tables, worktodo and workdone:
CREATE TABLE worktodo
(
workorder VARCHAR(32),
worker VARCHAR(64),
duedate DATETIME,
PRIMARY KEY workorder
...
0
votes
2answers
40 views
How to calculate with date ranges
Ok this coding piece - the TAT - may be simple for you but I am beating my head over this.
This returns the # of toys for each girl
Select Toys,
Count(Girls),
TAT
from Table1 (nolock)
i.e.
Girl ...
1
vote
1answer
26 views
Does Bulk Insert have an opportunity with accent grave characters?
If I do this, it works correctly with plain old varchar, so I don't think it's a nVarchar problem:
declare @RAM TABLE(
Descr Varchar(128)
)
INSERT INTO @RAM(Descr) VALUES('De La Crème')
SELECT * FROM ...
-1
votes
1answer
27 views
Getting syntax error in sql select statement
I have this sql statement:
SELECT inquiry_response,
inquiry_response_date,
date_initiated,
date_closed,
(select count(*)
from Inquiry_Responses
...
-1
votes
2answers
48 views
IF or CASE in query (SQL Server2008)
I have a View Table, in which I have a query written like this
SELECT landNo, planNo, blockNo, parcelNo, RTRIM(LTRIM(STR(parcelNo))) AS parcelNoString,
parcelAREA, '[ ' + blockNo + ' ]' + ' - ' ...
0
votes
1answer
47 views
SQLServerException: The result set is closed
I am attempting to populate a jTable from a resultSet using SQLServer with the MS Driver 3.0.
The table will generate as long as I do not close the resultset, statement or connection. If I close ...
1
vote
1answer
42 views
SQL Server High Availability on premise - cloud
I would like to know which is the best way to make a copy and keep the copies synchronized of a on premises SQL Server 2008 (not R2) database to SQL Azure.
Think of the SQL Azure as a failover kind ...
0
votes
0answers
52 views
SQL Server - inconsistent insert speed, fast then very slow
I'm trying to diagnose a slow insert that I thought I had fixed but the problem is returning intermittently. It's literally a straight insert statement, it runs every evening and inserts around 80,000 ...
0
votes
2answers
35 views
SQL Stored procedure delete duplicate records, keep one
I'm using 3 tables tblproduct, tblstock and tblwinkel.
There is are foreign keys productid and winkelid in the tblstock table.
The tblstock table has a field stock as well, which is an integer.
I ...
-1
votes
1answer
21 views
How do I modify this SQL schema to constrain data in tables?
Newbie in need of help.
I'm creating a small database.
I want to constrain data in a couple of tables - Lender and Pingtree. The ProviderType table contains lookup data and contains either ...
0
votes
1answer
28 views
SQL Server do declare statements in a loop cause significant speed issues and if so how can I resolve?
I have a function which is called many times. The function has several DECLARE statements in the body of it.
I'm wondering what the impact of this is if the function is called say, 100,000 times, and ...
2
votes
0answers
18 views
Cannot delete “system” partition schemes created by FullText catalogs
So we've got a bunch of apps running on our SQL servers, and today we realised that a number of them had a bunch of Partition Schemes/Functions that we didn't create.
The partition schemes and ...
0
votes
4answers
40 views
Select a value by the latest dateTime value in SQL Server2008
I have table in SQL Server as below. Table Name: LANDS
Land_ID UID DM_DATE DEL_REASON
1 5 2013-05-21 20:31:53.773 Reason1
1 1 2013-05-21 ...
0
votes
0answers
24 views
How to step into store proc using VS2010
I'm trying to use VS2010 to step through a SQL Server 2008 stored procedure.
I have added my DB through the Server Explorer and I marked the DB for Allow SQL/CLR debugging.
But when I select a SP ...
-3
votes
0answers
50 views
How to make query more efficient [closed]
I am working on the query below. At a glance I am wondering if there are any easy fixes, in terms of the query, to help speed it up. The querying is running for a very long time - not very ...
0
votes
1answer
23 views
Restoring SQL backup fails - Access is denied
Solved. See my answer (but first see my second edit to the question).
I'm trying to restore a backup for a database from one computer on another - thereby copying the db, but I get this message:
...
0
votes
1answer
33 views
Need help on a T-SQL XPath query
I'm hoping somebody can help me solve a syntax problem with a TSQL xpath query.
Given the following xml:
<emails>
<email></email>
<email></email>
...
0
votes
1answer
23 views
SQL Server session in CLUSTER
Can anyone help me with this ...
I have a 3 node sql server cluster lets say N1, N2 and N3. The name for the three node cluster is SQLCLUS.
The application connects to database using the name SQLCLUS ...
-2
votes
0answers
21 views
Auto updation of an ms sql table with a file in ftp server
I am using MS SQL server 2012. I have a table in the database with more than 100 fields. This table needs to be updated daily automatically. The data with which the table needs to be updated is in the ...
-2
votes
1answer
41 views
get late employee from database using entity framework
I am working in web app and I have 2 table 1 employees, 2-log_time(emp_id:int , log_time :datetime ,log_type : string ) i use calendar to select date and i wont Retrieve employee that ...
0
votes
2answers
50 views
How to get the last month in SQL Server 2008?
I´m writing a query where i get the last month, but with the time in zeros (if today is 2013-05-21 then i want to get 2013-04-21 00:00:00.000).
So I tried:
select ...
1
vote
3answers
54 views
Comparing substrings in same table
I need to run a query that will give me the list of all entries in one column that is NOT LIKE any of the entries in another column, i.e.:
SELECT DISTINCT columnA
FROM tableA
WHERE columnA NOT LIKE ...
0
votes
1answer
23 views
Azure with Azure SQL Server: ArgumentException: Value does not fall within the expected range
Never seen this on our local servers, but after deploying the MVC4 application and the SQL Server database to Azure we sometimes get the following exception, how to tackle this problem?
...
0
votes
1answer
14 views
Xml Shredding .Value Singleton
I am querying an Xml column in SQL Server 2012.
When moving the path to the .value method the results are not returning all the element instances!
,c.value('(*/*/Visitors/Visitor/@Name)[1]', ...
1
vote
1answer
40 views
SQL Server query performance when there's a dynamic condition in where clause
Let's say we have query A:
SELECT count(1) FROM MyTable WHERE Date_Created < DATEADD(DD, 3, GETDATE())
AND query B:
SELECT count(1) FROM MyTable WHERE Date_Created < '2013-05-24'
When ...
0
votes
0answers
12 views
SQL Server 2012 Remote connection giving Timeout and ASYNC_NETWORK_IO errors
I am experiencing problems with a service that connects to a remote instance of SQL Server 2012.
The .NET 2.0 service runs on the clients machine and it connects using TCP/IP to a remote web server ...
0
votes
2answers
57 views
Case statement and divide by zero error
I'm getting a divide by zero error and Im not sure how to handle it. Using a sql server database.
Script:
SELECT Race ,
[2012] = MAX(CASE WHEN a.[Year] = 2012 THEN [Count]
...
0
votes
3answers
46 views
How to use SQL Server views with distinct clause to Link to a detail table?
I may be total standard here, but I have a table with duplicate values across the records i.e. People and HairColour. What I need to do is create another table which contains all the distinct ...
0
votes
2answers
31 views
'an expression of non boolean type specified' in CASE WHEN
Given this T-SQL code:
SELECT CASE
WHEN ( Cast (CASE
WHEN Isnull(bpe.new, 0) = 0
AND Isnull(bpe.regular, 0) = 0
...
0
votes
2answers
39 views
GUID clustered PK's faster than BIGINT and INT identity PK's on SQL Server 2012 Express?
I'm developing a database-intensive application which maintains about 5 tables. These tables contain many thousands of records each. All the tables use GUID clustered primary keys. To make it ...
0
votes
1answer
66 views
Need, recommendations on choosing a good database driver [closed]
I'm almost done with the html/css side of my site and want to add database that will allow users to save profiles and search it using PHP search engine. However I've never worked with MYSql before and ...
-1
votes
1answer
23 views
Compare millions of records in different databases [closed]
I am looking for a tool that will compare all the data within a database and will report back and discrepancies that it will find.
The reason I am looking for this tool is because our upline data ...
0
votes
1answer
27 views
SQL Server Trigger using inserted ID
I'd like to create a trigger against an insert of a table in my database. So for example, if I have a company_name table, I'd like to do the following:
Insert new row into company_name table on ...
0
votes
0answers
17 views
Deploying a .mdf database file to SQL Server automatically
I want to write an installer that automatically deploys a SQL Server database (.mdf & .ldf file).
The target PCs are presumed to have SQL Server 2008 OR SQL Server 2008 Express already installed ...
-1
votes
1answer
39 views
Data warehouse design, multiple dimensions or one dimension with attributes?
Working on a data warehouse and am looking for suggestions on having numerous dimensions versus on large dimension with attributes.
We currently have DimEntity, DimStation, DimZone, DimGroup, ...
0
votes
1answer
50 views
How do I construct this table relationship in SQL Server?
Sorry, if this a rather basic question but I'm a SQL Server noob in need of help.
I have 2 types of loan providers, Lender and Pingtree.
Both Lender and Pingtree can have a relationship with ...


