0
votes
1answer
13 views
sql server 2005 tsql abs doesn’t like decimals?
trying to run the following statement in sql mgmt studio
declare @rick as decimal(13,3)
set @rick = -.5
select bob = abs(@rick)
any ideas why this won't work?
0
votes
4answers
63 views
Scrabble board to board.
Is it best to communicate between two scrabble boards on separate computers by creating a cloud with a SQL table, simulating the board. And every time I move is made you contact the server and update …
0
votes
3answers
56 views
can this be written with an outer join
The requirement is to copy rows from Table B into Table A. Only rows with an id that doesn't already exist, need to be copied over:
INSERT INTO A(id, x, y)
SELECT id, x, y
FROM B b
WHERE b.id IS NOT …
1
vote
5answers
28 views
How to resolve Oracle error ORA-01790?
I have two select statements joined by "union". While executing that statement I've got:
Error report:
SQL Error: ORA-01790: expression must have same datatype as corresponding expression
01790. …
1
vote
2answers
35 views
How to assign correlative numbers to rows only using SQL?
I have the following table in an Oracle database:
InvoiceNumber InvoiceDate InvoiceCorrelative
------------- ----------- ------------------
123 02-03-2009 0
124 …
0
votes
1answer
19 views
Cannot find data after commiting in PL/SQL procedure?
Hello,
I have code snippet in my PL/SQL procedure that does the following:
INSERT INTO payment_operations (id, subscriber, amount, description) VALUES (payment_id, 1234, 5, 'Test');
COMMIT;
SELECT …
-4
votes
2answers
55 views
Fastest / Cleanest Execution
I need to know for sure, as optimization is very important to me, in reference to a comment I posted here, which would produce the fastest execution in MSSQL.
Method 1:
DECLARE @val DECIMAL(8, 2)
…
0
votes
3answers
28 views
Update query “updatable query” issue
In Access 2003, I'm trying to take a table and if any Indicator = 1 for ANY line of a given ID, make all lines = 1 for that ID
For Example, if we have:
ID Indicator
Jack 0
Jack 0
Jeff 1
Jeff 0
…
0
votes
5answers
65 views
Sql Get the last 6
I need a sql query that use the Records ID to get the last 6 times of the trips also the number of time.
So the records in the table are like the following,
RecordID Nooftime Day&Time
1001 …
2
votes
4answers
29 views
How to see which queries has been executed. (mysql)
Hi,
I run a site at localhost and i would like to see which queries are executed.
I've seen that some pages execute a lot of queries (eg 107) and i would like to see which are all these,as i think …
5
votes
11answers
180 views
How do I protect this function from sql injection
public static bool TruncateTable(string dbAlias, string tableName)
{
string sqlStatement = string.Format("TRUNCATE TABLE {0}", tableName);
return ExecuteNonQuery(dbAlias, …
0
votes
1answer
18 views
FTS: Searching across multiple fields ‘intelligently’
Hi,
I have a SP using FTS (Full Text Search). I want searches across multiple fields, 'intelligently' ranking results based on the weights I assign.
Consider a search on a view fetching data from …
0
votes
4answers
55 views
Method for matching any string in SQL
I have a simple SQL query,
SELECT * FROM phones WHERE manu='$manuf' AND price BETWEEN $min AND $max
The issue is that all of the variable fields are connected to fields that will sometimes be …
1
vote
6answers
68 views
Saving order preference in SQL
I am trying to see what is the best way to handle the following scenario
I have a table called, lets say User, and i have a table called items. Each user can have multiple items added to his …
1
vote
1answer
44 views
Efficient Pagination from Join in Django
Hi. I've got a problem here with a join and pagination. I have 3 Models:
Pad
Tag
TagRelation
I use Tag relation to manage a ManyToMany relationship betweent Pads and Tags (with the through …
