Use this tag for questions specific to the 2008 version of Microsoft's SQL Server.
0
votes
1answer
14 views
Hiding SQL Server instance across the network
How can I hide SQL Server 2008R2 instance? I don't want it to be visible to users across the network.
Is this possible?
0
votes
3answers
54 views
How make query with unique?
I have query:
SELECT TOP 20 f.id_service AS f_id_service,
f.id_city AS f_id_city,
f.name AS f_name,
f.address AS f_address,
...
0
votes
1answer
67 views
C# StreamWriter not writing correctly
I am pulling data from a sproc and writing each column to a file. One of the columns I am pulling from is a memo field allowing up to 4096 characters and hard carriage returns. I have updated my query ...
0
votes
0answers
16 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 ...
0
votes
1answer
49 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 ...
0
votes
1answer
44 views
Group by issue in sql server [duplicate]
Hi all I have written a query to display the sum of quantity as follows without group by
SELECT ISNULL(SUM(VUItems.Quantity), 0) AS OrderQty
FROM VUItems
This returns as 0.00 but the same query ...
4
votes
1answer
54 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
0answers
16 views
Provider cannot be found. It may not be properly installed
Server = SQL Server 2008
Error:
ADODB.Connection error '800a0e7a'
Provider cannot be found. It may not be properly installed.
conn.asp, line 3
<%
Set conn = ...
1
vote
3answers
60 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
0answers
28 views
Show foreign key relation message when deleting records in mvc3
I have a table Country.CountryID is a foreign key on another table Energy.When I try to delete a record in Country table,I should get a message showing the foreign key relation.
That message should ...
1
vote
2answers
36 views
How to add one day to all DateTime columns in a database?
I have a server which hosts my application. The application is working. Yesterday I realized that the server date is one day behind.
How can I change the server date as well as update all my ...
2
votes
3answers
70 views
IF statement in SQL WHERE clause
Is it possible to pass in a value to a stored procedure to tell it whether or not to append an OR statement to a SQL SELECT statement?
I've tried something like so but it is not valid:
SELECT ...
0
votes
1answer
22 views
Hide ASP Website and SQL Ptored Procedures from Users
I'm creating a ASP.Net web application which will be hosted on different servers, and I do not want to show my code to others who have access to those servers. So, I heard of publishing pre compiled ...
0
votes
2answers
32 views
MS SQL Server '08 ignoring username and password when requesting a connection with connection string using Integrated security=SSPI
I'm using this connection string to connect to a ms sql server '08 db,
"Data Source=qwe;Initial Catalog=dsa;Integrated Security=SSPI;User Id=mydom\unamee;Password=pwd;"
but the server is ignoring ...
-2
votes
2answers
48 views
The sql command automatically creates a row number
mytable:
name family
-----------------
a aa
b bb
c cc
d dd
My desired output by SQL Code(by direction Select):
Row name family
-----------------
1 a ...
0
votes
1answer
35 views
Restore database in sql server
I have some sql server's backup file(format .bck). In my case, I do not know log file name.
So I can't use with move in restore command.
Is there anyway to restore database without move? If yes, ...
-1
votes
3answers
42 views
sql query with create command
I am having a problem in creating a table from another table.
I am using the query:
CREATE TABLE new_table as ( SELECT Distinct * FROM old-table)
Its giving the error
Incorrect syntax near the ...
0
votes
0answers
20 views
Got unexpected value in TDS response at offset
Am using Java, hibernate, sqlserver 2008 R2, Jboss ,
getting this exception,
WARNING [com.microsoft.sqlserver.jdbc.internals.TDS.Reader] (pool-26-thread-7) ConnectionID:4 TDS header contained ...
4
votes
4answers
73 views
Remove the Null Value from the result generated from MAX() used in query sql
When i use the query:
select MAX(DT_LOGDATE)
from UMS_LOGENTRY_DTL
where C_INPUTMODE='R' and VC_DEVICEID=10
the table gives maximum date, but if the condition is not satisfied it returns a data ...
1
vote
0answers
33 views
How to return a list of stores which are a specified distance from the entered Postcode
I am using Google Maps to create a store locator.
The user will enter their postcode and select from a dropdown menu the distnce from the location - 5, 10 15 20 miles.
Which will return the stores ...
0
votes
0answers
13 views
c# WinForm App setup wizard w/ network DB and multi Cient
I have been searching for this for couple days but was unlucky finding any answer.
I am building a winform application . Where the application will be installed to multi PC's on the same network and ...
0
votes
0answers
28 views
Using IQuery CreateQuery in NHibernate Performance is slow
I'm facing performance issues using CreateQuery, CreateSqlQuery & CreateCriteria. When I use these for fetching data it takes atleast 4-5 seconds. But when I run the same query in query editor for ...
-1
votes
1answer
23 views
Join two tables on a column mix with ids and space
how do you write a SQL statement in SQL server 2008R2 to join two tables on a column that has space?
I am getting the error "Error converting data type varchar to numeric."
e.g. Table1
[id | value | ...
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
2answers
28 views
T-SQL - Best way to select rows that corresponds to a category and default category if the category is not configured
I have a table of configuration data that can be associated to a Recipe (category to be more generic).
Like this:
Recipes:
ID Name
1 Default
2 A
3 B
Configuration Data
ID equipment ParentID ...
0
votes
3answers
30 views
Is there a way to set variables in a Select statement that can be used in the same statements WHERE clause?
I'm looking for a way to set a variable in a Select statement so it can be later used in the where clause.
Here is an example:
SELECT DateDiff(d,Time_Stamp,GetDate()) as Var1 FROM Report Where Var1 ...
0
votes
2answers
32 views
T-SQL - How to update these records
MyField Description
------- -----------
A001 Alcantara
A002 Apacible
Arctic
Arkansas
B001 Backdoor
Ballpen
Brother
...
0
votes
1answer
19 views
Se SQL statetement beeing run within a procedure with SQL Server Profiler
This is not directly a programming question but I ask it anyway because it's related to debugging.
I wonder if it's possible to see exactly what SQL statements that are being executed within a ...
3
votes
2answers
27 views
Error when creating database name using full of number in SQL Server 2008 R2
Create a database name using string, database will create successfully.
Example :
if db_id('Database1') is null create database Database1
Command(s) completed successfully.
But create ...
1
vote
1answer
25 views
How to only return in certain increments of days
I'm trying to return every 14 days starting from 12/31/2010 to 12/31/2011, but this statement doesn't seem to work
SELECT DISTINCT
Convert(varchar,Month(Time_Stamp)) + '/' +
...
0
votes
0answers
21 views
update pipe separated Numeric Id with AlphaIds
I have a requirment where I need to replace these pipe delimited Numeric employee Ids with Alphanumeric Employee Ids based on join with a master table on Numeric EmployeeIds
...
1
vote
1answer
26 views
How to remove duplicates rows out of table where certian field is equal to specified
Hi I have a Matching Application that matches two fields using Jaro algorythms.
How can I remove the following : Please see the image link below to understand my question :)
Thanks
0
votes
0answers
17 views
java connection pooling error in netbeans in for sql server 2008 with jtds Driver
I Just Configured connection Pooling in Context.xml and i'm using netbeans IDE and i'm using jtds driver for sql server and i'm getting Exception like this?
Cannot create JDBC driver of class ...
0
votes
1answer
57 views
Confusion about SQL Server snapshot isolation and how to use it
I am newbie to MS Sql Server. Just a few months experience maintaining SQL Server SPs. I am reading up about transaction isolation levels for optimising an SP and am quite confused. Please help me ...
1
vote
2answers
46 views
SQL Server 2008 : TSQL, select same data for different times based on column value
I am using mssql 2008 R2,
i have below structure
create table #temp (
product int,
[order] int,
ord_qnty int
)
insert #temp
select 10 ,3,4
now, if ord_qnty is 4 , i ...
0
votes
3answers
43 views
How to select a column from one table and two columns from another table when both the tables have no relation in T-SQL?
I will explain my problem as simple as possible.
I have written a select query Query1 on Table1 which gives the me the following result
SELECT * FROM Table1 WHERE TypeID=1
ID Column1 ...
0
votes
1answer
34 views
Getting org.hibernate.util.JDBCExceptionReporter: Connection reset by peer: socket write error
I'm using Hibernate, Spring, JBOSS and Microsoft SQL Server 2008 R2. At seemingly random times I get an error
ERROR [http-0.0.0.0-8080-7] org.hibernate.util.JDBCExceptionReporter ...
0
votes
1answer
45 views
Minutes(Integer) conversion to Hours(Float) in HH.MM format in SQL Server 2008
How to convert Minutes (integer) values in to Hours float (HH.MM) in SQL Server 2008.
for example 398 Minutes get converted into 6.38 Hours, 419 Minutes get converted into 6.59 hours etc.
0
votes
2answers
73 views
How to set a column value if unavailable
I have a table which is as follows .
TABLE NAME : TESTNUMBERS
ID(INT) NUMBER(INT) NAME(NVARCHAR(50))
1 1 Test
2 1 Test
3 2 Test2
...
0
votes
0answers
15 views
how fiter the values when joining 4 tables?
tbl_category
pk_int_category_id,
vchr_category_name
tbl_projects
fk_int_category_id,
pk_int_project_id,
vchr_project_name,
vchr_project_description,
bln_project_status
tbl_project_album
...
1
vote
3answers
44 views
How to convert text column to datetime in SQL
I have a column that's a text:
Remarks (text, null)
A sample value is "5/21/2013 9:45:48 AM"
How do I convert it to a datetime format like this: "2013-05-21 09:45:48.000"
The reason for the ...
0
votes
0answers
21 views
update from statement in SQL Server 2008 execution efficiency
I have such functions in SQL Server 2008, the execution time is so long.
CREATE TABLE [dbo].[T_SourcePayin](
[sourcePayinId] [int] IDENTITY(1,1) NOT NULL,
[checkPeriod] [varchar](6) NOT NULL,
...
0
votes
3answers
44 views
pair up two rows in single row
I have this table:
A B C
1 Record 1 Type 1
2 Record 2 Type 2
3 Record 3 Type 1
4 Record 4 Type 2
I need to pair up rows by their values in C (Type 1 & Type 2) given ...
1
vote
2answers
16 views
SQL-Server is ignoring my COLLATION when I'm using LIKE operator
I'm working with Spanish database so when I'm looking for and "aeiou" I can also get "áéíóú" or "AEIOU" or "ÁÉÍÓÚ", in a where clause like this:
SELECT * FROM myTable WHERE stringData like '%perez%'
...
1
vote
0answers
10 views
Is there any way to view exported PBM results?
I'm doing some project work with policy based management in SQL Server and noticed that after I evaluate a policy, I have the option to export the results. Is there any way to import those results ...
0
votes
2answers
39 views
Convert multiple columns (year,month,day) to a date
I've got a few columns that I'm trying to convert to one, but I'm having some issues here.
The problem is that the Month or day can be single digit, and I keep losing that 0.
I'm trying it on a view ...
-2
votes
0answers
25 views
Transaction (Process ID) was deadlocked on resources with another process and has been chosen as the deadlock victim. How to fix the deadlock?
I am calling and insert database tables in async calls with background worker class. I am getting deadlocks like below.But as my per my knowledge, sql will not go for deadlock till 2000 simulatinious ...
2
votes
0answers
26 views
Dropping Hypothetical Indexes [migrated]
In the past I thought I'd deleted hypothetical indexes using either a DROP INDEX statement for clustered indexes and DROP STATISTICS statement for non-clustered indexes.
I have a database that is ...
0
votes
1answer
49 views
Get rid of “semi-duplicates” in a query
I currently have a query that returns, for example, the following: (You can assume that this is what the table structure looks like)
customer_id | start_date | end_date
1 | 20120101 | ...
0
votes
5answers
33 views
More than one Case in same query are generating more than one row
My problem is actually I have multiple tables and I'm using two case statements to generate one column for ARV1 and one for ICA1, but I need the results are generated in the same row. When I usecase, ...

