Tagged Questions
0
votes
3answers
37 views
How to rename a MSSQL Datbase that has name “Database”?
I have a MSSQL Database named "Database". Now when i am trying to rename it using query shown below,
USE master;
GO
ALTER DATABASE Database
Modify Name = Database01
GO
it gives me a error message ...
0
votes
1answer
15 views
delete duplicate tuples except for one specific tuple
I want to delete the duplicate(same from and same to values) tuples from a table but need to keep the tuple with minimum object id(object id is pk).
So here are columns:
from | to | time | distance ...
0
votes
3answers
31 views
SQL: Finding Average Score
Given the table, I am looking for a query to calculate the average score of a given question for a given teacher.
If I was going to add another column to the table like SCHOOLID and wanted to have ...
0
votes
3answers
32 views
SQL Timestamp Subtraction to get number of days
In the code below instead of active age I need to do a calculation with Open_time and the current time.
In other words i need to do if current time minus open_time is between 0 and 30, or 31 and 60, ...
0
votes
4answers
23 views
Select duplicate records info
I have a person table:
Phone | Id1 | Id2 | Fname | Lname| Street
111111111 | A1 | 1000 | David | Luck | 123 Main Street
111111111 | A2 | 1001 | David | Luck | blank
111111111 | A3 | 1002 | David ...
1
vote
2answers
73 views
How to create query or store procedure on MS SQL Server to expand column from row
Need help from you all in writing up this query.
Field 1
========
Hello
Man
Lady
I need to result :
F1 F2 F3
=================================
Hello Null ...
1
vote
1answer
44 views
Bind rows based on status
I have a table like:
logID eventID repID statusID logTime
174356 228985 107959 1 2013-05-03 09:25:41.000
174391 228985 107959 1 2013-05-03 10:06:33.000
174588 228985 ...
1
vote
2answers
66 views
How can reduce the time of query
I have a table called ResultValues where I have 6 columns, 4 are integers, 1 is datatime and 1 is varbinary (1640).
Total number of records are '27,389,918' so this table is very huge. now when i ...
1
vote
2answers
45 views
SQL Query to find a column name throughout the Database [closed]
I have a column name that contains say MICROSOFT in my database in several tables.
I need to know the column names of all the places where MICROSOFT occurs.
is it possible?
If yes whats the query?
...
0
votes
2answers
38 views
SQL server join selects slower than join select with local table
I have two very big queries with multiple selects. All selects are JOINED (left, inner and right joins). Example:
Declare @p2 Table (
...
)
Insert into @p2
Select * from D
join E on ...
-2
votes
1answer
33 views
Comparing two LIKE conditions
Are these LIKE conditions the same:
Phone LIKE '%[()-. ]%'
and
Phone LIKE '%(%' OR Phone LIKE '%-%' OR Phone LIKE '%.%' OR Phone LIKE '% %'
I got results from the first one less than the second ...
0
votes
2answers
40 views
Remove dots and commas from column values
I am using SQL Server 2008
I migrated some data from MySql; the migration of data was successful but some values contain data with dots and commas.
What is the best way to remove these characters ...
0
votes
0answers
26 views
Result of MERGE SQL server query using Delphi XE4 TSQLDataset
I am using a Delphi XE4 TSQLDataset to execute a MERGE INTO query on SQL server:
Query_text:='MERGE INTO [Table]
...
SQL_dataset.CommandType:=ctQuery;
...
0
votes
1answer
28 views
divide two SUM of Two interval
I have a query that return 24 rows. I want to divide SUM of tirst 12 index into SUM next 12 index. I use ROW_NUMBER like this but I can't filter row. How I can do this?
SELECT ROW_NUMBER() OVER(ORDER ...
2
votes
0answers
35 views
Reduce Clustered Index seek cost SQL Server 2008 R2 [migrated]
I am running a query and it have records in lakhs, it takes more than 20 mins to fetch data. After running the execution plan i noticed that clustered index seek cost can be be the reason. How can I ...
1
vote
4answers
64 views
Sum up Time column using sql query
I have a table as follows
repID ClockIn ClockOut TotalHours
109145 7:50:50 AM 3:37:16 PM 7:46:26
109145 7:52:41 AM 3:44:51 PM 7:52:10
109145 8:42:40 AM 3:46:29 PM 7:3:49
109145 ...
1
vote
2answers
64 views
How to retrieve multiple table's data with Yes/No Abbreviation
I have 5 Tables
Village
T1_Master (Village_ID is a foreign key)
T2_Master (Village_ID is a foreign key)
T1_Details (t1_id is a foreign key) & (month,year,t1_id are combination ...
1
vote
2answers
45 views
How to read only date from sql server 2008?
DECLARE @temp TABLE
(
iLeadID INT ,
Title VARCHAR(MAX) ,
AlertDate DATETIME
)
DECLARE @iLeadID INT
DECLARE @getiLeadID CURSOR
SET
@getiLeadID = CURSOR FOR
SELECT iLeadID FROM ...
0
votes
1answer
53 views
Will setting the connection timeout kill the query on the server side as well?
I have some code querying a back-end SQL Server:
using (SqlConnection con = new SqlConnection(connString))
{
SqlDataReader dr;
SqlCommand cmd;
cmd = new SqlCommand("PROC1", con);
...
3
votes
2answers
44 views
SELECT records with 2 primary keys
I have 2 tables:
Cust TABLE:
siteid nvarchar(2) PRIMARY KEY,
custid int PRIMARY KEY,
fname varchar(30),
lname varchar(30)
Children TABLE:
childid1 nvarchar(2) PRIMARY KEY,
childid2 int PRIMARY ...
0
votes
2answers
87 views
Compute By Clause Error In SQL Server 2008
I am having a problem with this compute by clause
The statement is a simple select
Select
col1, sum(col2)
from
table1 t1
join
table2 t2 on t1.col1=t2.col1
where
year(t1.coldate) ...
0
votes
4answers
79 views
How to aggregate sum across three tables?
I have four tables like this
Table 1: MsPatient
PatientID PatientName
PA001 | Danny andrean
PA002 | John Travolta
PA003 | Danny Lee
Table 2: TransactionHeader
TransactionID PatientID ...
0
votes
1answer
53 views
sql server 2008 not generating random value
I'm having a problem with random values being generated for each row in a result set in SQL Server 2008. I found a similar question here, but upon implementing the proposed answer, I saw the same ...
3
votes
3answers
73 views
Sql Server 2008 Row to Column
I have two tables, tempUsers and tempItems. These two tables have a one to many relationship.
When I use an inner join on these two tables the result looks like this:
**user | Category**
Jack | ...
3
votes
7answers
94 views
How to Delete in MS SQL WHERE IN (SELECT Multiple Columns)
i have a table lets call it "Cluster" which is related an second table Element
Cluster:
Id Group Ele1 Ele2 Ele3
1 1 1 2 3
2 1 4 NULL 9
3 2 5 8 7
Element
Id ...
0
votes
3answers
57 views
SQL Query needs to match similar records
I have a very large table of contacts which I am building an interface to help my client to de-dupe. Here is an example of the table content
id | firstname | lastname | email | address1 | ...
1
vote
3answers
48 views
What kind of indexes will help me in this MERGE query?
I have a table like this:
Name | TimeA | TimeB | ValueA | ValueB
And, I am performing some MERGE operations as follows:
CREATE TABLE #TEMP1...
INSERT INTO #TEMP1
SELECT Name, Value
FROM ...
0
votes
1answer
44 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 ...
1
vote
1answer
41 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',
...
0
votes
2answers
39 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 ...
2
votes
2answers
84 views
How to Get a Single SQL Query From Complex Query with Temp Table in SQL Server 2008
I have a Table named #Temp in SQL Server 2008 like this
**Ticker Fin_Yr Qrtr_No Qrtr_Date Total_Amt**
AAMRATECH 2012 Q1 9/30/2011 11.875521
AAMRATECH 2012 Q2 12/31/2011 ...
1
vote
1answer
57 views
Not able to create foreign key constraint with on delete cascade as there is already one
Below is the scenario
Table1 (Id, Name)
Table2 (Id, Name1, Name2, Type)
FK1: Name1 references Table1.Name with On cascade delete
FK2: Name2 references Table1.Name with on cascade delete
FK2 ...
3
votes
1answer
67 views
SQL Sever Averages/Sums/Groups/Counts Query Issue
I have the following table:
╔══════════╦════════╦═══════╦═══════╗
║ PlayerID ║ GameID ║ Stat1 ║ Stat2 ║
╠══════════╬════════╬═══════╬═══════╣
║ 1 ║ A ║ 2 ║ 1 ║
║ 1 ║ B ...
2
votes
2answers
65 views
Add logic inside of a SELECT
Note in the below query that the first two queries inside of the parenthesis, I've added two repeated queries, I'm sure that this is not a good practice. I need to repeat this query anytime where I ...
-1
votes
2answers
53 views
Substract two alias column in SQL Server
I passed two query into inn and out alias column and I want to do this
res=(inn-out) but it gives me an error
Invalid column name 'inn'.
Invalid column name 'out'.
?
select productname
...
3
votes
4answers
92 views
which sql join query should i use?
i'm a noob in using complex query.. so i'm a little bit confused around here..
here are the problem :
i had 2 table, the first one is
employee :
empID name branchID etc
1 ab 1 ...
1
vote
1answer
83 views
Last non-empty child over period using MDX
[EDIT: Example was not entirely correct]
I've been pulling my hair out on this MDX issue...
I am making a cube concerning billing.
I have 2 (relevant) dimensions: budgetbill and month
And one ...
0
votes
2answers
61 views
SQL Selecting One Entire column based on from parameters? [duplicate]
I have this table and need help
Friends:
My_E_Mail (VARCHAR) AND
Friends_E_Mail (VARCHAR)
These are some sample values:
alester@pam.com carl@pam.com
alester@pam.com greg@pam.com
...
0
votes
0answers
39 views
how to get all available timeslots in sql server 2008?
I have 2 tables in sql server 2008 and i am working on resource allocation.
1 is for event :
EventId int,
Event nvarchar(50),
ScheduledDate datetime.
EndDate datetime
Closed ...
0
votes
1answer
45 views
TSQL returning the first record
I have a SQL Server 2008 table with the following data (Small sample)
id Date Value
20448D6F-4099-408D-85FE-11EC6690CDB8 2010-06-01 1
...
0
votes
5answers
44 views
Count the no of id if it is not present in another table based on condition using sql
I have a table which consists of RepId and its date.
Table: 1
RepID Date
108981 2013-04-09 00:00:00.000
108981 2013-04-09 00:00:00.000
108982 2013-04-10 00:00:00.000
108982 2013-04-11 ...
0
votes
3answers
60 views
Combining two SQL Queries
so im not great at sql so im a tad stuck on this issue:
I query our database and it returns a list of everything in it
SELECT Id, Version, Name, ImplementationId, ManagedDataRepoId, Description, ...
0
votes
1answer
34 views
SQL Statement to get grouped data from every 30 days, grouped by date
I have a table with the following two columns
ExportTime | Manufacturer
2009-11-16 21:30:10.000 | IBM
2009-11-16 21:30:05.000 | VMWare
2009-11-16 21:30:12.000 | HP
2009-11-17 ...
0
votes
1answer
66 views
Declare a SQL Cursor into With-As Clause
I want to create a stored procedure in SQL Server Management Studio which have a with clause.
And I want use a SQL cursor in with clause.
My stored procedure is:
ALTER PROCEDURE ...
2
votes
2answers
47 views
Query to join three tables With Sum
I am trying to join thee tables and there's one Sum value but its not showing any error but its a wrong value... but if I join with two table it working correctly.
the query is
SELECT ...
0
votes
2answers
29 views
How to Query data where User Name is Coming several time along with its permission MS Sql Server?
hi i am trying to get user id ,name,password,along with its permission but it is listing username ,id ,password several time how to get username ,id,password once along with its permissions my query ...
0
votes
1answer
38 views
SQL - Group fields into a column
I have a query which gets all public transport subscriptions. A subscription can have multiple related companies. So I wanted to do with my query is to get all the subscriptions and instead of ...
1
vote
2answers
53 views
Random selection of rows from sql result set? [duplicate]
i have a query which will result 10 or 20 or any number number of rows. Below is the query.
select bookname from bookstore where recommend='true' and Year(pubdate)='2013'
This query can give me any ...
0
votes
1answer
61 views
SQL Server query optimization date calculations
I am trying to find a more efficient way of re-writing my query.
Any suggestions? I am currently also thinking of displaying the fiscal month name as a number itself, then to compare and return month ...
5
votes
4answers
126 views
Detect Anomaly Intervals with SQL
My problem is simple: I have a table with a series of statuses and timestamps (for the sake of curiosity, these statuses indicate alarm levels) and I would like to query this table in order to get ...





