Tagged Questions
0
votes
1answer
18 views
Speeding up inserts on a table having a unique non clustered index?
I have a table like this:
CREATE TABLE dbo.MyTable (
Name [varchar] (600) NULL,
LoggedIn datetime NULL,
LoggedOut datetime NULL,
ProjectName varchar (500) NULL
) ON [PRIMARY]
...
1
vote
5answers
66 views
Return Distinct Rows That Contain The Same Value/Character In SQL
I have a bit of a tricky situation. I have a column that contains a pipe delimited set of numbers in numerous rows in a table. For example:
Courses
-------------------
1|2
1|2|3
1|2|8
10
11
11|12
...
0
votes
1answer
16 views
Grouping by or iterating through partitions in SQL
Two part question regarding partitioning in SQL.
In T-SQL when you use PARTITION BY is there a way to assign a unique number to each partition, in addition to something like row_number()?
E.g. ...
0
votes
0answers
31 views
SQL Query with duplication and editing
I am new to SQL and have a question that I have not been able to find the answer to yet, probably because I am not sure exactly what to search for. I am using SQL Server 2012. I have a DB that was ...
1
vote
3answers
54 views
Return Only The First Result For A Date
I'm sure I know how to do this but my brain is letting me down right now
Take this example table showing vital signs readings taken from patients at various times of the day:
How do I return just ...
0
votes
1answer
51 views
Conversion failed when converting date and/or time from character string
what i am doing is using own function , which is returning string , now i want this colun for ordering , and while using it for ordering it is not ordering properly because its a string , when i tried ...
0
votes
2answers
42 views
Vertical Join in an SQL Statement
I've got the following SQL Statement:
select * from Leaves inner join LeaveDetails on Leaves.LeaveId= LeaveDetails.LeaveId
inner join Employee on Leaves.EmployeeCode = Employee.EmployeeCode
inner ...
1
vote
0answers
44 views
Alternative queries for mysql and SQL Server?
I stated a project in php with SQL Server, and I have some doubts on queries.
what are all the things which will change from MySQL to SQL Server,
for example Limit,group by,order
and what are all ...
1
vote
2answers
46 views
Inserting table in SQL server using Cursor
I am trying to import an excel file to SQL , the file has 3 columns : Box - Code - Validity
i am using the following query
USE [Libatel]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER ...
0
votes
0answers
13 views
Show Job History Log's Other Computers in SQL Server
I installed SQL Server in computer which is under a LAN Network, connected to other computers such: B, C, D, E, and so forth.
I don't know which computers in the LAN access computer A to run their ...
3
votes
1answer
89 views
LEFT OUTER JOIN (SELECT * FROM TABLE) is this possible?
I have two tables Person and Salary.
Person:
PersonId | Name | Surname
--------------------------------
1 John Deer
2 Mark Bear
Salary:
SId | ...
0
votes
2answers
33 views
Pivot a single row
im kinda new on using pivot. how can i pivot this record from this:
P1AVERAGE P2AVERAGE P3AVERAGE -> column name
1.25 1.50 1.75
to this:
AVERAGENAME AVERAGESCORE
...
0
votes
0answers
20 views
refer to calculated fields in same SQL Server query
I have a query where the underlying result in output fields [1],[2],[3]...[@n]...[365] should be numeric(8,8), grouped by individual ids, like:
id 1 2 3 ... @n ...
0
votes
2answers
26 views
Conditional joins in SQL Server
I need to query for a dataset in SQL Server and have one of the return columns based on either one of two subqueries. The control of which subquery is from a value of another column in the query. ...
1
vote
1answer
37 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 ...
1
vote
4answers
45 views
Group By ALL child records
If I have the following data, where one rule can have multiple criteria:
-------------------
RuleId CriteriaId
-------------------
1 1
1 2
1 3
2 1
2 2
2 3
...
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 ...
0
votes
3answers
43 views
Match two tables and return the result table in sql
I have following two tables in sql server.
Table : 1
No Items
1 70
2 72
3 74
Table : 2
Name Type date
abc 70 12/12/2013 01:10
xyz 70 12/12/2013 ...
-5
votes
0answers
45 views
store procedure for inserting into a table by retrieving different columns from multiple tables [closed]
need to insert into a table req by retrieving from individual columns of different tables using stored proceedure
for example
tables :
table req(col1,col2,col3,col4)
table1(a1,a2,a3,a4,a5,a6)
...
0
votes
2answers
35 views
MSSQL query not working after adding PHP variable to the LIMIT
This is a query that I have used successfully in a MySQL environment before. When I try it using MSSQL. It errors out on this statement:
$result = mssql_query("SELECT * FROM DriverAppInfo ORDER BY ...
1
vote
4answers
45 views
How to merge a select statement with a new dynamic values as columns?
In my sql server code, I have this select statement
select distinct
a.HireLastName,
a.HireFirstName,
a.HireID,
a.Position_ID,
a.BarNumber,
a.Archived,
...
2
votes
1answer
48 views
SQL how to format time containing an aggregate or a subquery
Please help. Having a little bit of a problem here and need some help figuring it out. I have a query that returns multiple rows and when I try to format the time to display as I would like I get ...
1
vote
2answers
76 views
How to loop through stored procedure recordset?
I have this select statement
declare @t table (Percentage float)
DECLARE @acc INT
SET @acc = 1
DECLARE @max INT
select @max = max(HireID) from NewHire
WHILE (@acc <= @max)
BEGIN
IF ...
-1
votes
1answer
55 views
SQL Server Query — How to continue on error
I have a table containing thousands of fields and some of them were duplicated due to customer's failure and I need to fix it.
I can find them and delete them row by row, but I am looking for a faster ...
0
votes
0answers
21 views
Batch mode in SQL Server [migrated]
I want to try the column store index in SQL Server and im trying to get my queries to run in batch mode, i rewrote my query this way( it had an outer join before) but the execution plan still show ...
2
votes
1answer
57 views
how can i update SQL table logic
I have a table structured as,
Table 3
Fruit ID - Foreign Key (Primary Key of Table 1)
Crate ID - Foreign Key (Primary Key of Table 2)
Now I need to execute a query which will,
Update Crate ID ...
1
vote
2answers
50 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 ...
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
2answers
60 views
How to return multiple rows in sql from same table
Pretty new here and could really use some help. I have a table with
TimeID(pk), DateEntry(date), EntryTiem(time),
ProjID(int), ProjName(varchar), Phone(bit),
Research(bit), Notes(varchar), ...
-2
votes
1answer
45 views
Getting The multi-part identifier error in sql query
In my SQL query, I am getting the error:
The multi-part identifier "a.Position_ID" could not be bound.
I'm not sure whats causing it. Can anyone help?
Thanks.
select distinct
...
0
votes
1answer
45 views
How to merge multiple sql queries into one? [closed]
I am trying to decrease my asp classic page load time. The page calls sql server and gets the record set many times. Basically the structure of the code is like
This is actually the pseudocode of asp ...
-1
votes
1answer
50 views
How to use join in sql query? [closed]
I am using Microsoft SQL server, and I want to use the join but from multiple tables.
This is what I have
select a.*, b.Position_Name, c.StartDate, c.EndDate--, e.firmName
from NewHire a--, Firms e
...
0
votes
1answer
49 views
How to call a stored procedure in asp classic?
In my asp code I want to call a stored procedure. This is the code that I have that is working:
newHireSQL = "EXEC sp_selectNewHireSQL"
Set rsGetHireID = Server.CreateObject("ADODB.Recordset")
...
-1
votes
2answers
52 views
SQL Server : select same colums count by date
Hi guys this is my table
L_Date
2013-05-14
2013-05-12
2013-05-13
2013-05-15
and I need now all dates and count result where L_Date is <= than the selected like:
L_Date Count (<=)
...
-1
votes
0answers
51 views
No New Tables In Database After Executed Sql Query [closed]
I am using Microsoft SQL Server 2008 Management Studio. I have been trying to create a database (containing tables etc) from a query file (Delivery.sql).
In the Object explorer I right-clicked ...
0
votes
4answers
60 views
SQL Server Optional Parameter Date from to
I have a stored procedure and I want to search between the from and to date, but:
if @FromDate is not null and @ToDate is not null then
vSaleDetail.date between @FromDate and @ToDate
if @FromDate ...
0
votes
2answers
46 views
Selecting Huge number of records using SSIS
I am trying to load a fact table. I am joining 7 different tables. When I select the count(1) from that join, it took 25 minutes to execute and returned 988368728 records. On top of that I am using ...
-2
votes
4answers
61 views
How to improve query performance? [closed]
I have a query here to update a table with the inventory type of each rep's latest inventory. However, the only way I got it to work was by using a cursor, which is really affecting performance. Below ...
2
votes
3answers
74 views
Trouble with query, execute non scalar not behaving as I thought
I'm having trouble with a SQL query:
using (SqlConnection conn = new SqlConnection("user id=user;" + "password=pass;" + "server=server;" + "database=db;"))
{
using (SqlCommand comm = new ...
0
votes
2answers
86 views
How to get Column value without knowing column name ? SQL Server
I have table name as @Table_Name
I have column value as @Value but don't have the column name (but that exist at 1st position and can be Seek_id or prov_id ...I have to compare my value with this id ...
-1
votes
0answers
62 views
SQL Server 2012 t-sql query truncates results
I am using a stored procedure that generates insert statements that can be used to import data to an MS Access database. We use the resulting scripts to transfer data from SQL to Access ...
0
votes
4answers
67 views
Change lower case to upper (title) case using sql query
i want to change case using sql query
e.g if text is : My nAme is iShAn halaRNkar (text is jumbled i.e it may contain Lower case or Upper case anywhere in the senetence)
than i want the output to be ...
0
votes
1answer
67 views
SQL Server 2008 R2 STcontains spatial join using two tables
I've been stabbing at this for a while and am getting nowhere, so I'm hoping that someone with greater skills than I might have the answer.
I have two tables and in one is a set of latitude and ...
0
votes
2answers
62 views
nested select with delete sql statement
I dunno how do I need to solve it:
i've got a select statement:
SELECT
sum_lines.id,
sum_lines.line_id,
sum_lines.summary_id,
sum_lines.text_content,
...
0
votes
1answer
39 views
SQL query base on field of migration time
Table
The Data Structure such as the following:
[Table] Members, including member profile
[Table] Departments, including department for member
[Table] Migrate, Record Member migration between ...
0
votes
1answer
37 views
How to compose Query String from dropdown menus
Lets asume we have 2 dropdown menus. I would like to be able to select an item from those dropdowns and pass the selected item's value as a parameter (or placeholder) to a query string.
Something ...
1
vote
2answers
40 views
SQL query, select values of a column only if
Im using SLQ server 2005.
I have this table were i register a list of items creating an "order" wich will be sent to the warehouse so they know what it needs to be sent back.
this is my code.
...
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
2answers
83 views
Omitting blank/null records from a query? (Coldfusion)
I am currently trying to find a way to omit any results from a search where the field is blank. The simple method would be to use a <cfif len(example) neq 0>#example#</cfif> but this then ...
0
votes
1answer
50 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 ...

