2
votes
2answers
57 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
36 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
64 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
64 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
30 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
77 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
0answers
39 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
57 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
34 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
43 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
35 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
54 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
28 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
49 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
40 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
28 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
35 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
44 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
54 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 ...
0
votes
1answer
22 views

Return binary as string, NOT convert or cast

Is there a simple way (like convert or cast) to return a binary field as a string without actually converting it or casting it? The data I want looks like this in the database: ...
0
votes
2answers
51 views

Calculate Sum based on dates (Current, 7 Days,…)

The following is an example of Table I am currently working with: Date -------- Number -------Total 2012-03-28 3 158 2012-03-29 4 168 2012-04-08 ...
0
votes
1answer
31 views

SUM return wrong value when join 3 table - MS SQL

I have 3 table need to join namely table invoice, items and payments. The table items and payments will join to the table Invoice based on invoice id Now I need to get SUM of sales, sales after cost ...
0
votes
2answers
109 views

SQL 2 columns in different tables as distinct

This has been resolved, I needed to join 4 tables in SQL with 2 columns in different tables as distinct. I would consistently get duplicate rows until now. I have 4 Tables that I am trying to join ...
1
vote
2answers
56 views

SQL Select last occurrence of unique attributes

I have a table that looks like this: Date | AttributeId | Score | 4/4/2013 1 0.64 4/6/2013 2 0.35 4/6/2013 1 0.86 4/4/2013 5 ...
-3
votes
1answer
46 views

Best Way To Identify Groups in a Microsoft SQL Query [closed]

I have been banging my head against the keyboard for a good part of the day. I need help! I have a list of clients that may or may not belong to organizations. These organizations are grouped by the ...
0
votes
1answer
26 views

How do I combine these two spatial queries for SQL Server 2008

I have two queries, one that returns the top 10 closest locations: DECLARE @center GEOGRAPHY SET @center = geography::Point(@Latitude, @Longitude, 4326) SELECT ...
0
votes
3answers
58 views

Pivot case when?

I have the following data table: id displayName stringValue dateValue 59FAA56C-4C0C-456E-BA68-AC63250D6281 User SID SID-122 NULL ...
0
votes
3answers
52 views

A little help to better understand JOINS

I have 3 tables from where I substract data, and to get most of the data I have a query that works pretty good, but I can't get a specific row and that's where I need some help. Table 1: ...
2
votes
2answers
48 views

Combining unrelated queries into one query to produce counts

I would like a stored procedure to run daily that produces a report of counts. For example, the .csv would look something like this: Daily,1 Deaths,0 In-House EKG,4 In-House Xray,2 ...
4
votes
2answers
76 views

select coun(1) vs select rowcnt from sysindexes performance and use?

I read on NET that using case 2 is more fast than case 1 to check no of rows in a table. so i did a performance test of both count(1) vs rowcnt from sys.sysindexes I found 2nd one is far better. I've ...
0
votes
0answers
40 views

Convert ntext to clob

I have to copy data from one table to another which one table is in Oracle and one is in MSSQL Server. I want to copy the data from MSSQL Server table to Oracle table. The problem is that the MSSQL ...
0
votes
3answers
86 views

How can I implement Stored Procedure that accept dynamic search criteria?

Suppose I have the below table ( TestTable ) : ID , SystemID , UserID ( all columns are of type int ) I want to write a stored procedure that should accept a string parameter; its value like ...
1
vote
4answers
80 views

How to get desired result from this query?

I have problem similar to my this question : sql server 2008 case statement in where clause not working I have same document,SR and event table. My document table structure is like this : ...
1
vote
2answers
83 views

How to uniquely select month in sql using date records?

I have a problem with my current system. I have a table named Payment on my database. This is the picture of the table As you can see, I have the same details of Interest Balance for the month of ...
1
vote
4answers
118 views

sql server 2008 case statement in where clause not working

I have 3 table, Documents, SR and events In documents I am saving all documents related to SR and Events. And I want to show all documents in one page. So I am using this select query Select * ...
5
votes
3answers
55 views

Index on a column with like and where pattern?

I've came to this conclusion that Like in below cases does seek/scan But I didn't get Why does it scan in 1st case and Seek in 2nd case. I understood the 3rd case. SELECT c.contactname FROM ...
0
votes
1answer
55 views

Can i write this group by query without group by?

I've written query to find HOw many orders placed by each customer? I would like to now can i write same querying without using Group by clause? using somekind of subquery and join. SELECT ...
0
votes
2answers
38 views

copy records from one table to another query give error sql

Using the below query to copy records from one table to another, but i get error insert into table1 (datestamp) select datestamp from table2 where table1.datestamp is null I want to copy records of ...
-2
votes
1answer
71 views

Copy records from one table to another sql

I have 2 tables. I want to copy data from table one with 1 column (datestamp) in table 2 with 6 columns (id,name,rid,action,timestamp,datestamp). Now all columns (records) in table 2 are filled except ...
0
votes
2answers
74 views

Get records containing all the child records in sql server

I have heirarchical data in sql server. Follwing are my data heirarcy tree. Id Name ParentID 1124 ABC 2 1125 BCD 1124 1126 EFG 1124 1127 HIJ ...
1
vote
2answers
69 views

Fetching Records from multiple tables month wise

I am having scenario like this : I am having many tables and each table has date fields. Table: FA Id | Created_Date | ------------------------ 1 | 1/12/2012 | 2 | 2/15/2012 | 3 | 2/25/2012 ...
0
votes
2answers
47 views

Bifurcate Records respective to months

Here, I am going to explain my scenario: I have following tables: Table : Service_Type Id | Service_Name | Service_Table_Name| ---------------------------------------- 1 | FA | FA ...
0
votes
0answers
43 views

Need Insert sql query for a b-tree used for NLM?

Below is my table structure. I got it from other site written by someone. 'Table 1 tbl_BinaryTree_Nodes, primary table to keep Node details (say member details) Fields: Nodes_IN_PK_Code -- Primary ...
7
votes
2answers
273 views

Modifying a cross join query

I have this query that I found that I want to modify in order to get an extra column and also sum the last 3 months of the amounts found. I want to make a Crystal Report for this. Query below. SELECT ...
1
vote
1answer
62 views

Cross Join Split of Data

I have a table Employee, another table Department and a relational table: Employee Table id Name 1 A 2 B 3 C 4 D 5 E 6 F Department Table id Name 1 Accounting 2 Finance Relation ...
6
votes
1answer
86 views

Can I improve this query?

I have a very simple table (for demonstration purposes) CREATE TABLE t1 (id int,d1 date); and this query. SELECT A.id, minA, minB FROM (SELECT id, MIN(d1) AS minA FROM t1 GROUP ...
0
votes
1answer
66 views

I need to write query for numbers of occurance

file_id status date_occure 1 1 2013-04-10:3:26 1 2 2013-04-10:3:27 1 3 2013-04-10:3:28 only rows whis same file_id and have 3 statuses :1,2,3 whis same ...
0
votes
1answer
19 views

Finding similar alphabel but different numeric value in a field in SQL Server

I have a SQL Server table that has customers’ records. There’s are few customers who has multiple record with the same first name, last name, city, state, and zip and also have the same street name ...
0
votes
1answer
40 views

How to find the sum of Columns in table and insert the sum as New Row

I got this results after executing some sort of query which has these rows: I want to calculate the Total Marks as (12/38 + 14/23 + ....) for each students in the given result and insert that into ...
4
votes
2answers
79 views

is it a bug in SQL Server 2008?

create table Mytable1 (ID int, Fname varchar(50) ) create table Mytable2 (ID int, Lname varchar(50) ) insert into Mytable1 (ID,Fname) values (1,'you') insert into Mytable1 (ID,Fname) values ...

1 2 3 4 5 18