Use this tag for questions specific to the 2008 version of Microsoft's SQL Server.

learn more… | top users | synonyms (5)

0
votes
1answer
24 views

deletion of data based on comparison with current datetime

I have a issue while delete the data from table.. I will explain that to you in detail first. See i have one table with 1000 of records i have one more table with two columns **circle - Chennai ...
0
votes
1answer
2k views

SQL Server stored procedure create table with dynamic number of column

I'm new to stored procedure, and trying to figure out how to create a table with a dynamic number of columns. I'm using Microsoft SQL Server 2008. I have the following query which is meant to be ...
-1
votes
1answer
7 views

Daily Attendance Management System

Attendance Management System I am developing an attendance system for Student.Teacher can select the batch and that particular batch student list shown in grid view and she has a list of student and ...
0
votes
1answer
13 views

Stored Procedure in SQl server 2008 to get sum of column of table and call it in controller in asp.net mvc3

I am new to SQL- Server 2008 I want to write a stored procedure to get sum of a column in table and display it in a single column. and I want to call this procedure in my controller of Asp.net Mvc3 ...
3
votes
1answer
23 views

MSSQL 2008 R2: Selecting one duplicate columns once and rest of the columns comma separated

I am using mssql 2008 R2 have below structure create table #Profile (pro_id int,surname varchar(30),firstname varchar(30)) insert #Profile select 1,'John', 'James' create ...
2
votes
2answers
2k views

SQL Server: LEFT OUTER JOIN with TOP 1 to Select at Most One Row

I basically need to do a left outer join on 2 tables (CarePlan and Referrals) problem is i need the newest Referral If it exists, its ok if it doesnt. I have these 2 queries 1. joins the ...
1
vote
3answers
3k views

FORMAT function not working in sql server 2008 R2

DECLARE @d DATETIME = '01/01/2011'; SELECT FORMAT ( @d, 'd', 'en-US' ) AS US_Result; I am using above code in SQL Server 2008 R2 but it is encountering error 'FORMAT' is not a recognized built-in ...
1
vote
1answer
36 views

SSIS condtional split to skip rows in a datetime column which has numbers

I have a flat file source which is reading a .csv file. This file has a datetime column in which some rows have numbers. I want use a conditional split component to skip the rows which are having ...
0
votes
1answer
29 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 ...
3
votes
11answers
2k views

T-SQL - Is there a (free) way to compare data in two tables?

I have table a and table b. (SQL Server 2008) Both tables have the exact same schema. For the purposes of this question, consider table a = my local dev table, table b = the live table. I need to ...
0
votes
0answers
14 views

VB.net Single row list view across multiple lines

Is it possible to line break a listview control set to single row in visual studio similar to a wordwrap? So the line break occurs when a certain width is exceeded by the text, not where a certain ...
0
votes
0answers
39 views

How to eager load the Query

I'm facing with a select N+1 issue with the following Query. I'm new to NHibernate. Can anybody help me resolve this query in NHibernate using Eager loading. public ...
17
votes
6answers
19k views

Best way to copy a database (SQL Server 2008)

Dumb question - what's the best way to copy instances in an environment where I want to refresh a development server with instances from a production server? I've done backup-restore, but I've ...
0
votes
1answer
54 views

How do I solve this deadlock by using a stored procedure?

I have a table like this: Name | TimeA | TimeB | ValueA | ValueB I have a stored procedure as follows. There are two blocks of code inside two IF conditions, one takes care of the ValueA column, the ...
0
votes
3answers
24 views

Running aggregate column among pairs of varying order

If I have such data: Id, Team1, Team2, Score1, Score2 -------------------------------- 1, Aaa, Bbb, 10, 8 2, Aaa, Bbb, 6, 8 3, Aaa, Bbb, 6, 5 4, Bbb, Aaa, 9, ...
1
vote
0answers
42 views

Water Fall Logic via use of Update

Data been Hosted in ##YOMASTER (Temp Table) and I'm using Updates on my Water Fall Logic. Current Water Fall logic has 3 components and they all share the following: Which ever date is to be used, ...
0
votes
1answer
18 views

Inter page communication in asp.net webpage

I am working on one project in which i want to control webpage which is open in computer browser through mobile web page both pages are in same web site . When i press "Start" button from mobile ...
0
votes
4answers
30 views

Convert string to a valid MS SQL datetime to use for search in database

I saw a lot of answers, most of which include using of DateTime.ParseExact and "CultureInfo.InvariantCulture` but it's not working for me and I'm not sure that those answers are 100% related to the ...
1
vote
0answers
24 views

Third Solution for Student Course relationship

i was interviewed with a question, and i am not sure, if the interviewer was trying to confuse me or he was serious. Question was something, that we have a student Table , lets say Student ID , ...
4
votes
2answers
3k views

MS SQL Server and JDBC: closed connection

Im getting I/O Error: DB server closed connection. while connecting to MS SQL server 2008 from java code . SQL server is in mixed mode and its in local machine.My connection string is jTDS ...
0
votes
2answers
29 views

Having Trouble Using “AND” Operator to Display Desired Results

Having difficulty in getting the query to retrieve desired results using the "AND" operator. Need to show the people's firstname, lastname, email, and courseID in districtIDNum=5 who have completed ...
0
votes
0answers
58 views

Using “OR” versus “AND” Operator for Getting Specific Results

Will do my best to explain my problem here. I ran a query which works good for checking people who have completed either courseIDNum=11 or courseIDNum=12 in districtIDNum=5, but NOT both ...
0
votes
0answers
41 views

insert comma separated list of ids in a stored procedure [duplicate]

I'm trying to create a stored procedure in SQL Server 2008 that takes a comma separated list of ints and adds them to a table. For this example, the table has 1 column. So the stored procedure would ...
0
votes
1answer
13 views

Copy value from column/row into same table row

I have a table client that I need to copy the value of one column and paste it to another column in the same row. Here is the current data: ClientID Name DuplicateName 1 NULL name1 ...
0
votes
0answers
9 views

can’t install AdventureWorks

I downloaded file SQLEXPRADV_x86_ENU.exe (version 10.00.1600.22), and used it to install SQL Server 2008 Express with Advanced Services, which I think has capabilities comparable to SQL Server 2008 ...
1
vote
0answers
17 views

Why does SQL ignore an index hint and opt for a different index?

Given a table that has two indexes on it, one sorted in the reverse from the other and given these two queries. Select value From SomeTable wITH (INDEX(IV_Sort_Asc)) Select value From SomeTable wITH ...
3
votes
3answers
3k views

How do I save a stored procedure in SQL Server 2008 R2?

I am writing a SQL Server stored procedure for the first time and am unclear on how I can "save" my stored procedure so that it appears under Programmability, Stored Procedures in the Object tree.
0
votes
1answer
37 views

PDF Import into SQL

I have a pdf file that I converted to seperate HTML files, My goal is to import them into MS SQL so I can search the table for specific identifiers and display the result on a webpage. I am able to ...
0
votes
1answer
30 views

Severe error on MERGE OUTPUT statement

I'm getting a severe error - code 20, from a Merge statement and I am not sure why. The MERGE runs fine if I remove the OUTPUT $action clause, and updates/inserts the target table as expected. As soon ...
0
votes
1answer
10 views

lock sql table from sql server or asp.net mvc

I'm trying to do something simple with locking in sql server 2008 (or directly from asp.net mvc if possible) and not really sure how to handle it. I have a table (call it users), and username has to ...
1
vote
3answers
1k views

divide sql server table int chunks

using sql server 2008 I would like to take a table that has 11 million records and divide them into chunks of 50000 each while maintaining the original table and just making sure each chunk contains ...
0
votes
0answers
10 views

Microsoft.SqlServer.Replication.ComErrorException; cannot change properties to “Any CPU”

As the title states, I am having issues with the MergeSynchronizationAgent class in C#. When I try to create my syncAgent using the following call: syncAgent = subscription.SynchronizationAgent; ...
0
votes
3answers
47 views

SQL to Parse a Key-Value String

I have a comma delimited string like this: key1=value1,key2=value2,key3=value3,key1=value1.1,key2=value2.1,key3=value3.1 and I'd like to parse it into a table that looks like this: Key1 Key2 ...
1
vote
0answers
16 views

SSIS and IIS in different Server and trying to implement SSIS in ASP.net

I'm relatively new to SSIS so please go easy on me. We have 2 production server,one is for database and other one is for IIS. We are planning to develop SSIS package and going to implement it in the ...
1
vote
1answer
26 views

SQL Server 2008 filling gaps with dimension

I have a data table as below #data --------------- Account AccountType --------------- 1 2 2 0 3 5 4 2 5 1 6 5 AccountType 2 is headers and 5 is totals. Meaning ...
0
votes
0answers
10 views

Deploying a new database on a new server, an msbuild ssdt rookie issue

I have this issue, but I don't know which user to should I give dbo permission when the one making deployments to the server is the sqlpackage with msbuild and not an actual user. *** Could not ...
0
votes
1answer
22 views

compare two excel files in a ssis “Foreach Loop Container”

Introduction : I have Multiple Excel files which loop through a Foreach Loop Container in SSIS Package. The first Excel file Excel1.xlsx contains the old data (for example :I have a column named ...
0
votes
0answers
7 views

IIS not recognizing user on another computer- site works if ran on server

I have a weird issue going on. I have an intranet website in IIS and I can't figure out what's going on. The problem is that the server must not be recognizing users who are accessing the site. Now, ...
1
vote
3answers
65 views

sql time from value [closed]

I have a column with integer values in seconds, ie: Seconds 234555 1123 44567 I need to do a select of that column but the return value should be in the form of 1d 13h 23m How exactly should I ...
1
vote
1answer
17 views

Custom Paging for the recommendation

I have around 10000 records in my Sql Server Database, now i want to show 10 records per page, can anyone tell me which of the below 2 ways i should go for: so for this shall i go for GridView (built ...
0
votes
1answer
34 views

SQL Server Loop Backwards through results set

I have been given a task to generate an arrears report for accounts. This is fairly straight forward, apart from 1 column, DaysInArrears. I have created a query which works out the arrears status of ...
0
votes
1answer
31 views

Email SQL query results

I would like to send an email status of all the tables have been modified within a day. This is what I tried: EXEC msdb.dbo.sp_send_dbmail @profile_name='EmailProfile', ...
-1
votes
3answers
42 views

Separate 1 column data to 2 column

I have following data in my sql table: Tran_Date | Amount 2013-05-01 20:09:49 | 50.00 2013-05-02 04:09:49 | 50.00 2013-05-02 04:30:49 | 10.00 2013-05-02 20:09:49 | 500.00 2013-05-03 ...
-10
votes
0answers
57 views

A simple UPDATE SQL (novice) [closed]

I want to update TABLE1's column 2(string/char) from TABLE1's coulmn 1(numeric). I generally don't have to execute SQL queries - this sounds very simple to me but I am not able to do this. With the ...
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 ...
-2
votes
0answers
49 views

Output variable from dynamic SQL

I have an issue wen I try to output a value from a dynamic T-SQL Query inside of a stored procedure. I try to execute the following and simply output a 1 if something was found: SET NOCOUNT ON ...
0
votes
1answer
12 views

SQL Server Billing Implementation - The Current Balance

The current system I'm assigned to has no record of customer purchases, deposits, and rewarded credits (by administrators) - just a Credit column in the Users table. Every time a user deposits money, ...
0
votes
2answers
27 views

Deleting large amount of data from SQL Server database

I am trying to purge large amounts of historical data from our database for any data older than 13 months. I have written a stored procedure for truncation, however when I try to run them I have two ...
0
votes
2answers
56 views

A SELECT statement that assigns a value to a variable must not be combined with data-retrieval operations

I need to assign the m.expiry_date to the variable @nextActionDueOn. ALTER PROCEDURE [dbo].[MembershipRetentionCheck] AS BEGIN SET NOCOUNT ON; declare @firstActionTypeId int = 25 -- ...
3
votes
3answers
50 views

How should my query be?

I have a table like this: date, flag 22/05/13 1 22/05/13 1 22/05/13 0 23/05/13 1 23/05/13 0 So I ...

1 2 3 4 5 538