0
votes
1answer
39 views

SQL Server Merge - Getting matched records to another temp table

I have a MERGE query to update data. In case of no match I am inserting records to source getting the output to a temporary table. Would it be possible to get the matched records to temporary table ...
0
votes
5answers
49 views

Filtering duplicate records while importing data from source table to target table

This may be a simple query to some of you. But I am not strong in Sql, so expecting some solution for my problem. I have 2 tables, ProductVenueImport and SupplierVenueImport. We are dumping all the ...
0
votes
0answers
23 views

DataBase not expanding [duplicate]

My database expanding not working. it's struck to me . please see my problem with image: A transport-level error has occurred when receiving results from the server. (provider: Session ...
0
votes
1answer
16 views

Error on while Installing SQL Server 2008 R2

I am getting this error when I am trying to install SQL Server 2008 R2. Any idea?
-1
votes
2answers
61 views

Converting Date Strings (in different formats) Into Data Type In SQL Server

I have a column of data in the below string formats When I copy and paste the above into an Excel sheet and change the column to a date format, all of the above will be converted into the same ...
-4
votes
0answers
37 views

Is there any reporting software integrated with SQL Server? [closed]

I have database and I want to analyse it and make statistics depending on charts, so, Is there any software integrated with SQL Server to generate reports and charts? Any Open source tool, any paid ...
1
vote
1answer
33 views

sql query group by sql server

I have a sql server database table with columns as shown below : Table1 Id Name ErrorId 1 AB 2 CD 3 AB 3 4 AB 4 I want to get an output something like this : Name IdCount ...
1
vote
0answers
15 views

What is the best way to migrate multiple database server? [migrated]

I want to migrate my database server to new server. Right now I have database server with Windows server 2008 OS and now I am migrating to new server with Windows Server 2012(A seperate server. I am ...
1
vote
0answers
53 views

Confusion regarding query plan when using dynamic query

I have confusion regarding query plan when using dynamic query. Case 1: Insert the result of dynamic query in temp table and then selecting the temp table When I run the following query: USE ...
0
votes
0answers
25 views

Audit a specific user in SQL Server 2008 R2 [closed]

I want to know what exactly a database user does in a database instance. Know what views he executes and how many times he execute them and also how much times. What other queries he does. How much ...
2
votes
2answers
49 views

Using SQL MERGE with vars instead of a table

take the following table (a very simplified example): CREATE TABLE [dbo].[tbl_Order_Lines] ( [LineID] [int] IDENTITY(1, 1) NOT NULL , [OrderID] [int] NOT NULL , [StockCode] [varchar](20) ...
1
vote
2answers
68 views

SQL Server “.” Alias Not Working

I've added an alias of "." which should point to my local (named) instance, ".\SQL2008". But when I try to connect to ".", it times out. Am I missing something or is this not allowed? Aliases ...
3
votes
1answer
66 views

Set Max number of Queries to specific database user in SQL Server 2008 R2

Is there a way that a database user can be restricted to do one connection to a database and only one query at time? -In SQL Server 2008 R2 - Example 1: Database: database_1 Username: some_user ...
0
votes
1answer
58 views

Get the Count based on Conditions

I am using SQL Server 2008 R2. I have one table say BrokerTable ----------------------------------- BrokerCode | Rank | BrokerId ----------------------------------- 1527339 | 1 | ...
-1
votes
2answers
58 views

Stored procedure or trigger to enforce input data

My professor is asking me to either use a stored procedure or trigger to ensure that every time a new employee is inserted, the employee has at least one computer assigned, not null. ...
-1
votes
2answers
47 views

How to attach my DB.mdf?

I'm trying to attach my database to my project, but I get this error: cannot be opened because it is version 661. This server supports version 665 and earlier. A downgrade path is not supported. ...
1
vote
1answer
31 views

which one have better performance: tab expression, temp table? [closed]

if a query need a temp result,there are 3 options in SQL Server 2008: Use it in query as dynamic result, like Select * from tab1 a join (select * from tab2) b on a.ID = b.ID Use temp table: select ...
1
vote
3answers
53 views

How to create daily backup with unique name in sql server

I want to make full database backup of my server's all databases with unique name daily. For that I have an idea to keep timestamp which will make database copy separate. Suppose there is a database ...
0
votes
1answer
55 views

How to delete the duplicate records from the whole database

Today I have tried to fire the job that checks for the redundancy in the particular table. I have one table EmpDetails Please find the screenshot to find the records in the table A job runs from ...
4
votes
1answer
95 views

SQL SERVER 2008R2 Nested Transactions with RAISERROR

We are going through a process of switching from DB2 to SQL Server 2008R2 and I'm a bit unfamiliar with TSQL. Any help getting a better understanding of what is occurring would be nice. We've ...
0
votes
1answer
23 views

Replace XML node

I have a table in which there is a column named "ServiceConfig" with datatype xml. I have a record with xml like below : <Config> <services> <service name="pro" /> ...
0
votes
1answer
40 views

updateing all foriegn key constraint in sql server?

I have a database in sql server 2008 R2 that have many table (over 200) and have many relation betweens tables. Delete rule in most of relations is No Action I need to Update all relation delete rule ...
0
votes
0answers
38 views

How can i correct the error “Connection reset” MSSQL Server 2008 connection with Java using sqljdbc4

i am trying to select some data from MSSQL Server 2008 with java using sqljdbc4.jar but it shows me these exceptions com.microsoft.sqlserver.jdbc.SQLServerException: Connection reset
2
votes
3answers
49 views

How to join these two queries?

This query gets several AssignmentId's SELECT AS2.AssignmentId FROM dbo.AssignmentSummary AS AS2 WHERE AS2.SixweekPosition = 1 AND AS2.TeacherId = 'mggarcia' This query gets a value for only one ...
3
votes
1answer
105 views

SQL: find continuous date ranges across multiple rows?

I'm trying to get a start and end date combination for continuous spans of time worked. The spans can cross multiple rows, where the end date of the first row is the same as the end date of the next ...
-1
votes
2answers
104 views

How to handle .ndf files while restoring backup files in sql server 2008 [closed]

am trying to restore db through .bak file while restoring i met this error How to avoid this error and do successful restore, Note: against this Dababase 1. one .mdf file Ex: ...
0
votes
1answer
22 views

SQL server 2008R2 Allow Schema Compare [closed]

im trying to use http://dbdiff.codeplex.com/ to compare two of my databases unfortunetly I can only see my system databases in the database list. I tried Visual Studio's Data->Schema Compare but ...
0
votes
1answer
55 views

Update DATETIME values to <= GETDATE()-1

I'm looking to update existing DATETIME values to yesterdays date and previous depending on their DATE order but keep the TIME part as it is. For example assuming today's date is 2013-05-15 ...
-1
votes
2answers
40 views

How to add data from database test1 to database test2?

I have a database test1 and another one called test2. I need to add data from test2 to test1, but only if that data doesn't already exist in test1. Tell me please how do this?
0
votes
1answer
53 views

Pivot with a table variable

I'm unable to use a pivot the data of a table variable. Its giving following error on run-time: "Must declare the scalar variable @reportData" I have tried as mentioned below DECLARE @reportData ...
0
votes
4answers
74 views

Getting count of records in child table using select statement

I have a stored procedure in which i am trying to select all the columns of a table Table 1. There is another table which uses Table1 primary key as foreign key. I want to count number of records in ...
0
votes
1answer
63 views

System.OutOfMemoryException when trying to run a create table script generated by SQL Server Management studio

i've 8GB of ram, when i tried it on a 16GB machine the script runs fine, all it does is it creats 2 tables and fills them with data, about 12000 records for each table and 38 columns for the first ...
0
votes
2answers
112 views

What is the best way to fetch records batch-wise from SQL Server

Scenario: we are fetching rows from SQL Server to C#.Net console application and doing action on the retrieved data from SQL Server through stored procedure; after the action is performed the new data ...
-1
votes
2answers
50 views

What does the third parameter in CONVERT() do?

Query Get the Joining year,Joining Month and Joining Date from employee table This is my query which I have to perform. For this I write the following script: select SUBSTRING ...
0
votes
1answer
39 views

Parallel Query Execution while Sync in SQL Server

I am using Microsoft Sync Framework to sync data in N-Tier Client Server architecture. Synchronization works fine when there is low volume of data to be synchronized. However, when there is large ...
-1
votes
1answer
32 views

Calculation of fuel

I have a table contains two fields named ME and STE with data type decimal.I want to find (ME used for last 90 Days / Total STE for last 90 days) * 24 I need to solve this using sql. How can I write ...
0
votes
2answers
69 views

Cannot connect to SQL Server instance from web application but can from SSMS

I've got SQL Sever 2008 R2 Express installed and am able to connect to it with SSMS using (local) and Windows Authentication. However, when attempt to connect to it from an MVC Web Application ...
0
votes
1answer
13 views

Calculation Aecc in sql

I have a field named Ae in my table. I want find "total Ae consumed in last 90 days/90". How can I write a query to find this in sql. Please help me to solve this.
1
vote
1answer
64 views

inserting into temporary table

In first step i am creating structure of the table, Second step i am inserting data from one table into the 1st table, third step also i am inserting data from another table to first table, fourth ...
0
votes
1answer
32 views

How to create multiple REMOTE SQL servers easily?

I want to create 4-5 REMOTE SQL servers for a learning purposes. I want to avoid all installation, admin, troubleshooting tasks. I want all this FOR FREE. How do I do this ? The purpose behind ...
0
votes
1answer
58 views

SQL Server identity column skipping ids on insert - no errors detected in logs

I am using SQL Server 2008 to maintain a database where I have an userAcccounts table where the user details are stored while registering on the website. The userID column is an integer with identity ...
0
votes
3answers
106 views

How to create dynamic SQL queries inside CURSOR

I have to dynamically create a query inside cursor DECLARE @id VARCHAR(10) declare @loc varchar(25) set @loc = '/MainItem/SubItem'; declare @querry varchar(max) DECLARE myCursor CURSOR LOCAL ...
0
votes
1answer
38 views

Manipulating Data in Joins

Diagram: Query for join: SELECT DISTINCT c.CustomerID, c.FirstName , sh.DueDate, p.ProductID,p.ListPrice FROM SalesLT.Customer c INNER JOIN SalesLT.SalesOrderHeader sh ON c.CustomerID = ...
0
votes
0answers
74 views

Why is error 22051 from sp_send_dbmail not caught by a CATCH block?

So I have a sql stored proc: CREATE PROC sp_SendConfirmedPurchasesEMail ( @RecID INT ) AS ... msdb.dbo.sp_send_dbmail @profile_name = @ProfileName, ...
-2
votes
1answer
84 views

Searching an MS SQL database for a specific word [duplicate]

I've been scouring online for an example of how to do this but haven't found anything at all. All the queries I've found assume you know what table you want to search. I'm looking for a SQL query to ...
0
votes
0answers
102 views

Find datewise records by status for multiple records within same day

I am using sql server 2008 R2. I am having a table TblStatusMaster that have (Id, StatusName). Id is primary-key that is auto-increment and statusName can be in "Active, InActive, Screening, ...
1
vote
1answer
39 views

Is it possible to make a script for certain number of rows in Sql Server 2008?

I have a table with 100k+ rows of data. Is it possible to generate script (inserts) using MSSQL Server 2008 for only last 1000 rows of data? e.g. Tasks > Generate Scripts... is making inserts for all ...
3
votes
1answer
57 views

Not able to get the stored procedure's result in variable in sql server? [duplicate]

i have a Hierarchy of stored procedures calling one in another as below: 1 2 3 Now what i am doing is: first of all i am showing the 1st level sp . Create proc proc_test3 ( @Id ...
1
vote
1answer
31 views

Sql Server Value Method Returning only one value not multiple

I am trying to return multiple element values into rows and I am running into the below issue of it not returning all instances in rows, I have isolated the issue down to a singleton problem. I have ...
0
votes
2answers
42 views

How do I insert a default value as part of a SQL Server View definition?

I have a number of different views which use the same underlying table, but each uses a different default value for the FK. So for my attempted code: ALTER VIEW [dbo].[vwTest] AS SELECT Id, ...

1 2 3 4 5 13