Use this tag for questions specific to the 2008 R2 version (sql.100) of Microsoft's SQL Server.

learn more… | top users | synonyms

0
votes
1answer
19 views

How to link two databases

I have two databases. But I have some data which depends on one another table. Now I want to link the two databases. when I change a specific column from a table of 1st database then I want to effect ...
-1
votes
0answers
17 views

Microsoft SQL Server 2008 R2 [closed]

I am about to download SQL Server 2008 R2 SP2, do I have to download the base - SQL Server 2008- before I download the service pack version? Or does the service pack version contain everything needed ...
0
votes
0answers
17 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
-1
votes
1answer
14 views

sql server 2008 r2 express work on 32 and 64 bit [closed]

I want to install Microsoft SQL Server 2008 R2 RTM - Express with Management Tools for my application and it should install in 32 and 64 bit system but I only find separate .exe for it. I should ...
-2
votes
1answer
26 views

Sorting and saving as a new table

I have a table named “Unsorted Name” Name Grade Z 3.4 T 3.8 A 3.5 B 3.6 I want to sort the name in ascending order and want to save the new table as named: “Sorted Name” Name Grade A ...
0
votes
1answer
16 views

Working with SQLServer 2008, stored procedures and WebService

So I'm trying to invoke an stored procedure from a web service but as soon as I add either the "prepareCall" or the "prepareStatement" my WebService stops working. When I test it it shows some big big ...
0
votes
2answers
24 views

Delay in reading from specific database

I have an application written in VB.NET which reads data from an SQL Server 2008 R2. At the time of login, user select one of the many database files (available in a dropdown list) and then keys in ...
0
votes
1answer
45 views

Error in SQL query in Visual Studio 2012

I am trying my hand at writing something that can be used at work and am learning on my own. I've run into an issue that I cannot find a solution to, although it's very possible that I am just ...
0
votes
1answer
22 views

How to use merge to insert value from a stored procedure

I am trying to do something like this: merge MembershipTEST as T using (select OrganisationID, Name From MembershipPending) as S on T.OrganisationID = S.OrganisationID and T.Name = S.Name when not ...
0
votes
0answers
8 views

SharePoint DLLs missing from Assembly

I have SSRS reports configure in SharePoint Mode. But when ever I try to open the Webservice Report URL, it throws the following error: "The configuration parameter SharePointIntegrated is set to ...
0
votes
3answers
24 views

Can't access sqlcmd using username password

I am new to SQL Server. Please help me to fix. I have created a user with password in SQL Server Management Studio (2008 R2). When I use sqlcmd with this user, sqlcmd says C:\Console2>sqlcmd -U ...
1
vote
2answers
39 views

SQL SELECT * FROM OPENROWSET with Variable

I am trying to pass a variable into a SELECT statement in OPENROWSET but I keep getting an error DECLARE @dDateTIME DATE SET @dDateTIME = (SELECT SalesDate FROM dbo.SalesDate) INSERT INTO ...
3
votes
2answers
51 views

SQL stored procedure - Deleting each row that matches input list

I need to make a stored procedure that takes a userId and a list of categoryIds, and delete any row that matches, from a specific table. Pseudo code: @categorylist int[] @userId int ...
-1
votes
0answers
18 views

crystal report replace function

I have two table like Table 1: Id stringval -- --------- 1 do you work on date XXXX and date @@@@ Table 2: Id CharString ValueString -- ---------- ----------- 1 XXXX 5-5-2013 2 ...
0
votes
0answers
6 views

How to reduce network latency during mirroring? [migrated]

We are using SQL Server 2008 R2 Standard edition for mirroring. But we found out that network latency is too high. It takes nearly four times time to complete a transaction while mirroring is active. ...
2
votes
3answers
43 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 ...
0
votes
1answer
26 views

SQL Server 2008R2 - data in perm table but not in temp table

I am not sure why this is happening... the actual table has data yet when trying to pull data from the actual table into the temp table, there is no data... IF object_id('DI_Temp.di.Holly') IS NOT ...
0
votes
2answers
31 views

Finding all parent childless records in SQL Server to create a “default value” child

First let me get something out of the way: my knowledge of SQL is very, very limited (to understanding basic CRUD operations only, sadly -- talk to me of JOINs and stuff and you might as well be ...
0
votes
3answers
35 views

Updating table with the data from another unrelated table

I'm using SQL Server 2008 R2, I have the following tables: client(id,country,name) and temp(id,country), and they are UNRELATED between each other. I want to know how can I set the temp.id value to ...
0
votes
0answers
4 views

SQL Server Filestream operations fail intermittently with “The network path was not found”

I had a problem that took days to solve. I could not find a problem exactly like it on this forum so I am posting the question here along with the solution. ASP.NET application on a web server ...
0
votes
1answer
22 views

How to get distinct column data on the basis of latest date time from SQL Server 2008 R2

I have table login with columns id, username, logindate. Sample data looks like this: {1, username1, logindate1} {2, username2, logindate2} {3, username1, logindate3} {4, username2, logindate4} ...
1
vote
2answers
52 views

Get column name of a bit column where value is true

I'm trying to create a select query that would return the name of a bit column if value is TRUE or 1. The only way I could do it is if I added an additional column "Day" and had description of the ...
3
votes
1answer
38 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 ...
0
votes
1answer
12 views

How to use column name as part of a LIKE statement in a WHERE clause of a JOIN

LEFT OUTER JOIN [INVENTTRANS] ON #TEMP.VOUCHERPHYSICAL=[INVENTTRANS].VOUCHERPHYSICAL WHERE [INVENTTRANS].ITEMID = #Temp.INVENTDIMID This provides me nearly the result I am looking for. About 1/4th ...
1
vote
0answers
19 views

Full Text Catalog [closed]

I am using SQL Server 2008 R2. I need to find when and which user created full text catalog. Also, when were fields that need to be full text index in that catalog were added/modified/or removed ...
-2
votes
0answers
28 views

Choosing Non-clustered indices

I have a table wherein the queries fired against this table takes too much time. Records are in millions. The Table has clustered index to Primary key including 5 foreign keys. The foreign keys don't ...
0
votes
0answers
10 views

Attaching SQL Server 2008 R2 Express database via C#

I am having trouble attaching a SQL Server 2008 R2 Express database. I have to do it via a .Net exe. Here is my code string fileName = @"C:\express\createdb.sql"; ProcessStartInfo psiSqlCmd = new ...
0
votes
0answers
8 views

how to stop analysis process in sql server?

I have an issue with Database Engine Tuning Advisor (DETA) in sql server 2008 r2. I wrote a query in sql editor and moved to on Analysis Query in DETA by using mouse right click in it and I got a new ...
-1
votes
2answers
30 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: ...
-1
votes
0answers
6 views

Remove the BackgroundColor of Report tablix in SSRS

I do not want to show the tablix background color when i print the report but when i view the report in BIDS i want to show Thanks in advance Paramesh
1
vote
2answers
45 views

Get Record according to year range

I want to select a result from student table- query - if I pass any year like 2013 then select the students join start date and end date or he is currently there in between these year like if any ...
0
votes
1answer
17 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
0answers
22 views

i have posted a query which is to copy d column values of staging table to base table where few of the column names are changed in base table

Insert into [DBNAME].[dbo].[TABLENAME] Select AA, ABC, PP From [DBNAME].[dbo].[TABLENAME] Where AA = 'EEE' If (COL_NAME = 'YYY -NNN') Then @Location = 'NNN' @Function = 'YY' ...
0
votes
1answer
27 views

Calling a SP from another SP via EXECUTE SP_EXECUTESQL

I am using EXECUTE SP_EXECUTESQL for calling a stored procedure from another stored procedure but I am getting an error. I haven't tried it before so I don't know what is wrong. Here ...
0
votes
0answers
22 views

How to restore DB Backup from 64 bit SQL Server to 32 bit SQL Server [migrated]

i have an issue that 64 bit SQL Server DB Backup am unable to restore it into 32 bit SQL Server,for more details, Source Server(Backup Made One) Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 ...
0
votes
1answer
15 views

Database location in relation to main web server

Ive recently taken the plunge and started renting a VPS for my web projects. As the demands on the system get higher so do the costs. MY VPS is US based due to costs, but Im based in Germany. ...
0
votes
1answer
20 views

SQL function that given a date calculates the next date based on an day of week parameter

i would like to know if someone have a function in SQL, than given a initial date and a day of week (tuesday for example) it can calculate when is the next date since de initial date that will be ...
-4
votes
2answers
38 views

SQL query row number for a group

I have a resultset like this ID Name theDate 123 AAA 01/01/2012 123 AAA 01/02/2012 123 AAA 01/01/2012 456 BBB 02/04/2012 789 CCC ...
0
votes
1answer
23 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
33 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
34 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
1answer
26 views

how to update an identity column values

ID EmployeeName Address PhoneNo EmailID DOB DOJ Designation Department CraetedDate 2 Sabarish Saidapet 9600387983 sabari@gmail.com -1973 -2012 Ase Software 2013-05-15 ...
-1
votes
1answer
12 views

prevent schema change permissions to user

I have a user (d2user) the roles of this user is only read and write.. so we added role db_datareader and db_datawriter using sp_addrolemember sys proc. However when I login with this user.. I am ...
0
votes
4answers
58 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
0answers
2 views

Checking load on SSAS server

We have a SSAS server. The server got multiple cubes on it. Multiple users are running query on the server using various clients (.net application using ADOMD to execute query, management studio etc). ...
2
votes
2answers
34 views

Copy Table Data from Diffenent Server DB to Diffrent Server DB

I have table structure in one Server DB and ...
3
votes
3answers
74 views

SQL Query to calculate first n customers based on quantity conditions

I have a question but I am not sure how to ask. Here is my example. Product Customer TxDate Qty Apple Peter 2013/02/02 3 Apple Edward 2013/02/03 5 Apple Sally 2013/02/06 3 ...
-1
votes
0answers
34 views

vb6: Crystal Reports 8 not opening in Client PC but working in Server

My VB6 application is working in server (windows server 2003) and reports are opening in the same system and these are shared across the LAN. Application is working perfectly but crystal reports are ...
0
votes
0answers
14 views

what do I need to do to move an instance of SQL Server 2008 R2 which is not in a domain into a domain?

We currently have 2 servers which are virtualized. One is a test server and the other is our production server. Both are running Windows Datacenter 2008 64 bit with SQL Server 2008 R2 64 bit. I'm ...
0
votes
1answer
29 views

How to convert date stored in nvarchar to date in MMDDYYY format removing dashes (e.g 06122012)?

I want to convert date stored as nvarchar in Birth_date column SQL. For example, currently I have dates in 1999-01-22 format, I want to convert it to 01221999 (8 characters) using SQL Server. Can ...

1 2 3 4 5 79