Tagged Questions
1
vote
3answers
37 views
How can I page through distinct filtered results?
I have the following query:
SELECT DISTINCT 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,
f.business as f_business,
...
6
votes
3answers
23 views
How to update the field value of specific's column in SQL Server using Query in one shot?
I have Imported Data Form XLS in Open Source eCommerce Platform @AspxCommerce - Downloded Form Here
but finally realize that it has wrong data without any Extension at the end of the data, in One of ...
0
votes
3answers
40 views
Prevent changes the default value of a column in a table sql server
How can i prevent changes in a column value set to default in sql server
i have a table TimeTable in which Column is date which is of type varchar(20) i want that column should be updated with ...
0
votes
1answer
71 views
Why this Where condition returns 0 Rows?
SELECT
*
FROM tblName
WHERE mode = '1' AND (category = @Category OR @Category = 'all' OR NewsId = @Category)
I passed @Category='all'. This returns 0 rows. If OR NewsId=@Category this condition ...
0
votes
0answers
14 views
Running stored procedure by SQL job with Linked Server query error 7391
I create stored procedure which query data from Linked Server to insert into current server.
I test this stored procedure by directly execute, it's work fine.
I have to run this stored procedure ...
0
votes
6answers
45 views
How to create a table from select query result in SQL Server 2008
I want to create a table from select query result in SQL Server, I tried
create table temp AS select.....
but I got an error
Incorrect syntax near the keyword 'AS'
-1
votes
2answers
45 views
IF or CASE in query (SQL Server2008)
I have a View Table, in which I have a query written like this
SELECT landNo, planNo, blockNo, parcelNo, RTRIM(LTRIM(STR(parcelNo))) AS parcelNoString,
parcelAREA, '[ ' + blockNo + ' ]' + ' - ' ...
1
vote
1answer
24 views
SQL Server High Availability on premise - cloud
I would like to know which is the best way to make a copy and keep the copies synchronized of a on premises SQL Server 2008 (not R2) database to SQL Azure.
Think of the SQL Azure as a failover kind ...
0
votes
0answers
41 views
SQL Server - inconsistent insert speed, fast then very slow
I'm trying to diagnose a slow insert that I thought I had fixed but the problem is returning intermittently. It's literally a straight insert statement, it runs every evening and inserts around 80,000 ...
0
votes
2answers
42 views
How to get the last month in SQL Server 2008?
I´m writing a query where i get the last month, but with the time in zeros (if today is 2013-05-21 then i want to get 2013-04-21 00:00:00.000).
So I tried:
select ...
1
vote
1answer
36 views
SQL Server query performance when there's a dynamic condition in where clause
Let's say we have query A:
SELECT count(1) FROM MyTable WHERE Date_Created < DATEADD(DD, 3, GETDATE())
AND query B:
SELECT count(1) FROM MyTable WHERE Date_Created < '2013-05-24'
When ...
0
votes
3answers
44 views
How to use SQL Server views with distinct clause to Link to a detail table?
I may be total standard here, but I have a table with duplicate values across the records i.e. People and HairColour. What I need to do is create another table which contains all the distinct ...
0
votes
0answers
14 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
46 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 ...
3
votes
1answer
46 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 ...
2
votes
3answers
67 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 ...
-2
votes
2answers
47 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
33 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, ...
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 ...
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" />
...
3
votes
2answers
26 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 ...
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
...
0
votes
1answer
55 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
43 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
1answer
39 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
72 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
...
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
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%'
...
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 ...
0
votes
2answers
32 views
SQL Server query displaying null instead of 0 using Count and GroupBy
I have the following query :
select
Pr.Name, PS.TotalSales, PS.Truesales
From
Product Pr
Left Join
(select ProdudtId, TotalSales = COUNT(Transaction.Id),
Truesales = ...
1
vote
1answer
33 views
Can osql.exe or sqlcmd.exe be used to change the default password policy of instance?
Can osql.exe or sqlcmd.exe be used to change password policy of instance? I have a batch script that creates databases and users but , as you know, the "sp_addlogin" stored procedure doesn't seem to ...
1
vote
2answers
44 views
How can I show all time between 2 different time parameter
I have 3 Columns in db Time Parameter(00:15) , StartTime(09:00) , EndTime (15:00)
Now I want to show all time with gap of 00:15 min between 09:00 and 15:00
What query should I write so that it ...
2
votes
0answers
29 views
which non-clustered index should i have to use composite or single column in sql server? [migrated]
i have following columns in my database table(Medicines).
ID bigint,
MedicineName nvarchar(50),
BrandName nvarchar(50),
MedicineCode nvarchar(20),
and price,quantity.
i am ...
0
votes
1answer
38 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
17 views
How to insert XML attribute matching values in SQL table using SSIS.
I have XML where I wanted data of some matched attribute which I wanted to dump into my SQL backup table
E.g. : S Node where N="AccountName"; //So value should be "abc" and N="Fcode";// value should ...
0
votes
1answer
23 views
Adding “db_executor” role for multiple roles in database
When i grant permission to add role db_executor for multiple users(d2mgr,d2user) when creating a new database i am getting db_executor role added only for single user(d2user) and what is the solution ...
-1
votes
0answers
40 views
Do I need to worry about my t-SQL statement locking up?
I have the following table created on SQL Server 2008:
CREATE TABLE tbl (
id INT NOT NULL IDENTITY(1,1) PRIMARY KEY,
dtIn DATETIME2,
dtOut DATETIME2,
type INT)
This table will be populated ...
0
votes
0answers
20 views
Semantics of .WRITE(NULL, NULL, NULL) when updating a VARBINARY(max) column
What are the semantics of the following query
UPDATE table
SET column .WRITE(NULL, NULL, NULL)
if column is of VARBINARY(max) type and its contents are not NULL?
A quick test suggests that the ...
0
votes
0answers
18 views
Expand data in VARBINARY(max) column
What is the best way to expand the data in a VARBINARY(max) column, i.e. to set the data to a new length greater than the current length?
-----------------------------------------
| current data ...
1
vote
1answer
25 views
SQL Server Management Studio - Create database with files at specific location
Using SQL Server Management Studio (SQL Server 2008 R2 Express), how do I create a database with files at an arbitrary location, say "K:\SQL_DATA"? I have been able to create it at default location, ...
0
votes
1answer
46 views
Initiate Rollback if any SQL command fails
I'm looking at updating an old PowerShell script I ran for inserting Exchange Message Tracking logs into SQL. Due to the way I am pulling the Message Tracking logs into a tab delimited CSV file and ...
0
votes
0answers
19 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
0
votes
2answers
77 views
SQL: Avoid duplicate data
Table1:
Person_ID Name Salary_Revisions
1 Test1 100
1 Test1 200
2 Test2 300
2 Test2 400
Table2:
Person ID Department
...
-1
votes
1answer
35 views
A Simple SQL “City Name” - “Country Name” Mapping Query [closed]
I've gone through many question and answers on here and made many searches to find a "SIMPLE" country names to city names mapping SQL tables without any luck. MaxMind, Geolocation, Geoname, all ...
1
vote
1answer
31 views
How to use IF Else in store procedure?
I am trying to execute Select query with ID parameter, now if ID is empty then I want All Rows, otherwise only row which contains this ID,
So far, I have created this Store Procedure,
IF(@CustId = ...
-6
votes
0answers
33 views
problems of SQL Server environment [closed]
I would like to make short report about "five of the most common problems with managing large, complex data sets in a SQL Server environment".
Please guide me on this. Thanks
2
votes
2answers
83 views
Use conditional computed column in SQL query
I have two tables viz. #Exported_Data and User_Details.
#Exported_Data: (User_Id, User_Name, Status, Office_Id, Dept_Id, Service_Id, Allocation)
User_Details: (User_Id, Office_ID, Dept_Id, ...
0
votes
1answer
17 views
How to do arithmetic operations on data fields and aggregate functions in where clause?
I'm using this query to return the distribution of a float field around its average:
SELECT COUNT(*) AS [Count], Result FROM (
SELECT ROUND(Result - AVG(Result) OVER(), 1) Result FROM Results)
...





