0
votes
1answer
44 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 | ...
0
votes
0answers
40 views

Customer specific database records

What we have right now: 1. SQL Server 2008 R2 Standard Edition 2. 100 tables 3. ~1000-2000 pieces of programmability (Stored procs, functions, etc) 5 of our tables contain global information ...
0
votes
1answer
17 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 ...
0
votes
1answer
23 views

Data Converted to BigInt contains Decimal with E Proceeding with Plus sign

i am using "SQL Server 2008 R2". I had a table that had a column Name TimeSpent varchar(250). I am storing some Positive integer values in it . I am using cast(TimeSpent as BigInt) To insert data into ...
1
vote
3answers
31 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
28 views

Update timestamp column when Foreign table updates without Trigger

I'm trying to setup a Timestamp/Rowversion on a Parent table so that when the Child table updates, the Timestamp on the Parent table row changes. I don't need to know about the row in the Child ...
0
votes
3answers
57 views

SQL Server 2008 r2 CASE Expression not evaluating correctly

I've got the following SQL statement that is not determining when a field has a value of 'Y' when it should. Here is the SQL... SELECT A.BUSINESS_UNIT , A.WO_ID , A.WO_TASK_ID , ...
0
votes
0answers
30 views

“Read from the server failed” after selecting some records

I have a simple Perl script that connects to a MS SQL Server 10.50 via freetds. It runs a single query, something like "SELECT name FROM table". The table has about 15000 records. I do ...
1
vote
2answers
48 views

SSRS action on field in CSV list

My client requires a report that produces a comma separated list of files in one column of a grid. I know I can use a FOR XML Path in my query to yield these results. However, the client wants to be ...
0
votes
1answer
38 views

SQL Server with clause versus temporary table

I could either do select * into #randomTenUsers from (select top 10 * from users)x select * from #randomTenUsers OR WITH randomTenUsers as (select top 10 * from users) select * from ...
0
votes
1answer
27 views

Count Function on Multiple Columns by Date (SQL Server)

I'm using SQL Server 2008 R2 and trying to do multiple counts on different columns and can't figure out how to get it to work properly. I have two queries that work independently, but having trouble ...
0
votes
1answer
34 views

Get real user windows login name if connection authorized by SQL auth and impersonated

Is it possible to get windows login name of connection to MS SQL Server 2008 R2 if connection is made with SQL auth? In addition - impersonation is used. I can only get real host name. I guess it's ...
1
vote
1answer
20 views

Escaping backslash in SQL Server GRANT

GRANT SELECT ON tableName TO something\user_name Unfortunately, when I execute this in SQL Server 2008 R2 I get an Incorrect syntax near '\'. error. Is there a way to escape a backslash, or what ...
1
vote
3answers
35 views

Error on renaming database in SQL Server 2008 R2

I am using this query to rename the database: ALTER DATABASE BOSEVIKRAM MODIFY NAME = [BOSEVIKRAM_Deleted] But it shows an error when excuting: Msg 5030, Level 16, State 2, Line 1 The ...
1
vote
2answers
37 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 ...
1
vote
2answers
24 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
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 ...
4
votes
1answer
59 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
21 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
32 views

Calling SP with Output Parameter From another SP

I just trying to call SP from another SP, but stuck in that when find output parameter in calling SP. i am using EXECUTE sp_executesql to call the Store Procedure. Here is some part of my SP ...
1
vote
1answer
45 views

SQL Server 2008 R2 view assistance

I have several views and tables which I am trying to connect in one view to create a website GUI for several users (and myself) to use. It is basically an inventory system which is linking together ...
1
vote
4answers
38 views

Calculations over Multiple Rows SQL Server

If I have data in the format; Account | Period | Values Revenue | 2013-01-01 | 5432 Revenue | 2013-02-01 | 6471 Revenue | 2013-03-01 | 7231 Costs | 2013-01-01 | 4321 Costs | 2013-02-01 ...
0
votes
1answer
39 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
1answer
20 views

SQL Server create assembly which references another assemblies

I have .NET class library which uses Quartz.dll When i register assembly in sql its says that Quartz.dll requeres system.web, system.drawing, System.DirectoryServices.Protocols... It is not ...
0
votes
0answers
20 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
1answer
41 views

Sorting and saving as a new table [duplicate]

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 ...
1
vote
3answers
38 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 ...
2
votes
3answers
48 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
2answers
39 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
1answer
35 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
59 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
55 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
54 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
18 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
34 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
16 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. ...
-1
votes
2answers
34 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
40 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
65 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 ...
2
votes
2answers
38 views

Copy Table Data from Diffenent Server DB to Diffrent Server DB

I have table structure in one Server DB and ...
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
vote
1answer
30 views

Visual Studio 2010 Unit Test DB

I imported my SQL Server 2008 DB script and created a new VS 2010 project to create Unit Testing for the database. It has built in functionality for checking return row count and scalar variables ...
-1
votes
0answers
68 views

How can I generate a formatted report from a stored procedure? [closed]

Ok I have done a lot of researching and so far I have not found anything like below that I need for work... This is what I have: 0-5 6-10 11-15 16-30 31+ ...
1
vote
1answer
44 views

How can I split a comma-delimited value into multiple rows?

I have table1 query string that pulls the following from a remote table whereby myKeys is actually a comma-delimited list: table1: myKeys varchar, myCount int, myComment varchar I need to update a ...
1
vote
2answers
40 views

How can I substitute IDs in a string with corresponding values from a table?

I've got 2 tables in a SQL Server 2008 R2 database - Rules and Items A Rules record has Id and Expression, eg: 1, "(1 AND 2)" An Items record has Id and Name, eg: 1, "Foo" 2, "Bar" Is ...
1
vote
2answers
61 views

sql server 2008 r2 top (1) to update date not working

I have table with two colums (startTime, endTime) , those are from dataTime type. when I insert a row in this table I want to update previous data in this table like this: update endTime in the row ...
1
vote
2answers
51 views

SQL for filter records based on another query on the same table

I have a table with following columns TrialId Points TrialDateTime UserId This represents trials done by a user & the points he scored in the trial. A particular user may do 10 trials so he ...
0
votes
1answer
33 views

How to attach LDF file in SQL 2008 R2

I want to change the place of my database. but I have make one small mistake... I have attached my db but I have not select LDF file therefore SQL creates one new LDF file. Now I want to attach my ...
1
vote
1answer
60 views

Convert varchar to timestamp in SQL Server 2008 R2

There is table with timestamp column in SQL Server 2008 R2. When I only add this column to my table I see values like this 0x00000000000007D1. I try to put data into it: UPDATE test_time SET date3= ...

1 2 3 4 5 29