Tagged Questions
1
vote
2answers
21 views
Dynamic SQL = [Err] 42000 - [SQL Server]Incorrect syntax near '01'
Here is my code:
DECLARE @1day AS VARCHAR(MAX), @sqlText AS NVARCHAR(MAX), @firstdate AS DATETIME
SET @firstdate = DATEADD(dd,-(DAY(GETDATE())-1),GETDATE())
SET @1day = CONVERT(VARCHAR(MAX), ...
-4
votes
3answers
41 views
Select database values from textbox
I have one listbox with 'firstname' and 'lastname' stored in it from the database.
How do i write my query to retrieve information from the database selecting the index.
I have
"Select * from table ...
5
votes
2answers
29 views
Error using ALTER TABLE … ADD COLUMN syntax
I'm making a way for our developers to easily update our database. The way we're doing this is by creating dynamic queries where they define the variables at the top and the query uses the variables ...
-2
votes
0answers
59 views
Complex select query - sql server [closed]
I'm a novice of SQL, my question relates to the following tables:
Comments
id_comment|comment_product|comment_date|product_id|user_id
1 |Lorem 1 |2013/06/12 |1 |1
2 ...
1
vote
1answer
12 views
SQL Server , restrict UNPIVOT to order columns automatically
I have a table with data in one row:
Account | OrderID | OrderName | Priority | Fasting |AssignedTo |ResultsTo |Location
...
0
votes
2answers
15 views
mssql query join to work out esclation person based on discounts percentage
Hi I have the below working query(mssql)
select
max(load_number) load_number,max(linediscount) maxlinediscount,max(CustomerBand) customer_band
from [Linked_Order_lines]
join ...
0
votes
2answers
52 views
query - group by max amount
tbl_transaction
Sender Receiver Amount Date
1102504637 31750690083 50 03/04/2013
1102504637 31750690083 50 04/04/2013
1102504637 31750690083 50 06/04/2013
1102504637 ...
0
votes
1answer
10 views
MDX query not evaluating 'Greater Than' expression
I have an MDX query that has a weird evaluation behavior.
here is the query
Select {[Measures].[Alert Count]} ON 0,
Hierarchize([Alert].[Alert Type].Levels(1).Members) ON 1
From(SELECT { ...
0
votes
3answers
38 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 ...
1
vote
1answer
30 views
Find Rows in table with a value that cannot convert to int
I need a way to detect rows in a table in MSSQL with varchar entries that cannot be converted into an int.
The system I'm working on uses an editable varchar field in one place, and joins that to an ...
1
vote
1answer
29 views
Computing a column based on comparisons of other columns in table
Ok I am working on a database table with 4 columns, lets say a first name, middle name, last name and a group id. I want to group people based on the fact that they have the same first and last names ...
1
vote
1answer
33 views
Fusion of two tables with Specific SUM operation in SQL Server 2012
I have two views in my database, here are their structures:
Table 1 (Stock product entries) :
---------------------------------------
| Date | Product | Quantity |
...
0
votes
2answers
49 views
Data appear at least once for every month in the last X month
My problem:
Table: trans_detail:
PhoneNo | Datetime
01234 | 2013-01-05 20:40:10
01245 | 2013-04-02 21:00:13
05678 | 2013-04-16 01:24:07
04567 | 2013-07-23 07:00:00
etc | etc
I ...
2
votes
9answers
108 views
Count male, female and total
I want to count male, female and total students from Student table for a specific year specified. I wish if the result could be displayed in the form:
====================================
| Label ...
0
votes
2answers
35 views
Will this function make the strSerial always unique?
Will this function make the strSerial of an item always unique or it only gets date time and if someone execute the script at the same time, they will get both same strSerial ?
$x = explode(' ', ...
-1
votes
1answer
38 views
Why this php mssql script doesn't work as it should be? [closed]
I've edited my script, so that it won't get the IP address. (I removed the function for it)
But now it doesnt work as it should be.
Original script: pastebin. com/NNDr8n3Y
Edited script: pastebin. ...
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, ...
1
vote
1answer
25 views
Update a column in a database depending on the text in another column?
I have a column of type int and a column of type varchar(255).
Is it possible for me to loop through every row in my database and check for a certain string in the varchar(255) column, if that ...
0
votes
2answers
27 views
Grouping values by month and by quarter
I have data like
MyTable
person datetimeField datavalue1
a 20110104 3
a2 20110105 2
b 20110302 5
c 20110403 6
d 20110605 ...
1
vote
1answer
59 views
Tune the following query for better performance
Please help me to tune this sql server query. Here vcompanyquicksearch is a view on the company table.
What indexes should I create? A sort operation is taking place in the execution plan
which ...
-1
votes
1answer
48 views
SQL query to find all the columns that are of the type Datatime
I have to find all the columns in a table where the datatype for that column is datetime.
Any ideas on how to do this?
IE
Select * FROM Table1 WHERE datatype = datetime.
0
votes
1answer
46 views
Query to arrange the order of execution of Where Clauses [duplicate]
I have a database where some parts are indexed why some parts are not properly indexed due to business requirements using Entity Attribute Value(See here : Optimizing search for values in columns in ...
0
votes
2answers
59 views
Whats wrong with query? wrong syntax error? Group by no working
I have written a query
(SELECT TimeStamp, AVG(FwdHr), W
FROM Meter_Data
WHERE (TimeStamp Between 1370476500 AND 1370477100 AND DeviceID = '1'
GROUP BY MeterID ORDER BY TimeStamp)
UNION
...
1
vote
4answers
59 views
Having issue in connection string of already an open DataReader
There is already an open DataReader associated with this Command which
must be closed first.
I m facing this issue when same person open the same page at same time on different system.
I have ...
1
vote
1answer
25 views
mssql generating unique code
please help me in this,how would i do some recursive statement in my stored procedure.
here is what i want
-- @requestcode will genereate some random string i have already the code below
set ...
-2
votes
5answers
52 views
How can I see which tables are used in a view?
I have some views in SQL server manager, and I want to see which tables are being used to supply the data to the view. How do I do this?
1
vote
1answer
33 views
Python SqlAlchemy querying Session with Unicode value in 'filter_by' returns null
I have a (MS SQL) db table in which one of the columns, keyphrase, is of type nvarchar. I have set up my SqlAlchemy model of this table to have type String(convert_unicode=True) for this column (I ...
1
vote
3answers
56 views
MS-SQL multiple like query
I have two Input textboxes:-BookName and Author
I am trying to use a store procedure for searching in Library Management System.
Procedure is:
ALTER PROCEDURE dbo.Library_AdvSearch
(
...
-1
votes
1answer
48 views
SQL Server2008 Finding missing record [closed]
I have 1 table with these specification:
Year = int
Month = int
Code1 = varchar
Qty = int
And the records will be:
Year Month Code1 Qty
2012 01 ABC 3
2012 01 DEF 2
2012 02 HIJ 1
...
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
2answers
56 views
Select column data between () parantheses
I have data in SQL server database column like the following:
Column
Ot ntri - Non Cash - (6932)
Otr Contri- Cash - (6930)
anth C-Cash - (6935)
Phil Cor-Non Cash - (6937)
Poll Conh - (6940)
I need ...
-2
votes
3answers
43 views
query execution time reduction
how to reduce the execution time of this simple SQL query in SQL server?
select *
from companybackup
where tiRecordStatus = 1
and (iAccessCode < 3 or chUpdateBy = SUSER_SNAME())
it has nearly ...
0
votes
2answers
48 views
Combining sql queries
I am new to T SQL, I have two query's that I need to combine them according to common column value.
Both query are working fine individually.
First query is
SELECT t_senderTable.nameFull AS ...
1
vote
1answer
33 views
SQL Server query plan generation optimization
I've got a quite complex view that has about 100 subqueries in it's definition.
Simple statement like:
SELECT * FROM MyView
take 2 seconds to generate the plan and execute query.Subsequent selects ...
-2
votes
1answer
57 views
translate query from MSSQL to MYSQL [closed]
i have following query that i need to translate from MSSQL to MYSQL
select TOP 7500 Verdunster1B_Digital.LocalCol,
Verdunster1B_Digital.Funktion_Heizband_Verdunster1B,
...
0
votes
1answer
35 views
SQL Server query multipart Identifier cound not be bound
I am trying to fill a table with data from two tables from two different databases on the same server .
insert into emsoluciones.dbo.incoming (volumen, fechaini, fechafin, placa, nombreconductor, ...
0
votes
1answer
19 views
sql serveur query update cascade
I need to change an the id of 1 table. but the id is use on other tables. So how to create a sql query for update every table at the same time?
UPDATE table1,table2,table3
SET id = 2
where id=1
How ...
0
votes
4answers
38 views
php: How will I know if the sql query is successfully executed
For example:
$qrInsert = "INSERT INTO DBASE1.DBO.TABLE1 VALUES ('sampVal','sampVal','sampVal')";
odbc_exec($msCon,$qrInsert);
if( 'the query if successfully executed' ){
//then do this
//if not ...
0
votes
2answers
56 views
Which of the below query will perform well?
I am trying to understand if there will be any performance benefit in one query than the other in below two queries. Appreciate your help to understand this.
This query will be called few thousands ...
-2
votes
1answer
43 views
Find closest addresses [closed]
I have a table with 700k addresses and need to find the ones around a given address. For instance if I put in
1234 MARKET ST
I need to find 1230,1232,1234,1236,1238,1240 for 13 records including ...
-1
votes
1answer
31 views
optimizing sql query with multiple select from
Hi everyone I am hoping for some help/insight/ideas on how to best select data from my tables(I can do inner joins but that's about as "complicated" as my knowledge goes with SQL). Well I'm using this ...
2
votes
2answers
42 views
Ms sql, how to add 2 new columns using autonumber as their counter? in query
here is the link of the picture:
help i need to create something like table 3..
i already have a query that has them all except for the count2 column, i don't know how to create that in query..
...
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
1answer
34 views
I am loosing precision when converting from float to varchar
I am working on Sql Server 2012.
I have 2 tables:
Create table tbl1 (formula varchar(50))
Insert into tbl1 values ('A-B')
Create table tbl2 (A float(53), B float(53))
Insert into tbl2 values ...
0
votes
1answer
33 views
Newbie trying to decipher merge command associated code
Someone retired in our group and I'm trying to figure out what his merge statement (and associated code) does so I can determine how to convert some (not all) values to integer before sending up. See ...
-3
votes
0answers
46 views
SQL Guru, How To Display Employee Roster Using SqlServer T-SQL [closed]
I have difficulties building and displaying the employee roster in a calender view or crosstab view using SQL Server SQL Query.
I 2 tables, the Employee Table and the Roster Table as follow:
Roster ...
0
votes
0answers
40 views
How to insert values into XML column of SQL Server database
I have a table in a SQL Server database where three columns are xml datatype.
I need to insert data into these columns using inline query.
I am using string reader and my string is:
...
-5
votes
2answers
38 views
Query to increase the value based on inserted value [closed]
I need one SQL QUERY.
In my table i am having one column named ID(non Primary Key) which contains the values like 1,2,3,4,5 etc. If i am trying to insert 4 again that column means then new 4 should ...
0
votes
1answer
71 views
char(32) data as primary key?
(NOT a duplicate of Char(4) as Primary key or whatsoever.)
I am designing SQL Server tables for my project. I have two tables so far: Data and Ref.
Data structure:
DataID SomeData ...
2
votes
1answer
108 views
WHERE clause - record with a NULL column is not displayed
Conception
In the Org_Structure there are unique combinations of departments and offices. In the Emp_Positions table each employee is assigned to the certain combination of department/office or ...





