0
votes
4answers
76 views
Interesting SQL problem
I have a SQL problem I am trying to digest. I am using SQL Server 2005.
In a table I have data as such:
ID Type
1 A
2 A
3 A
3 B
4 B
I nee …
1
vote
4answers
40 views
Diff Tool That Ignores Newlines
I frequently need to compare SQL procedures to determine what has changed in the newest version. The problem is, everyone has their own style of formatting, and SQL doesn't (usual …
0
votes
1answer
28 views
Generate random string, check it against database, then use it.
This is an issue which keeps coming up for me when using random strings.
This is basically the process.
Generate random string
Check if it already exists in the database
If it d …
0
votes
1answer
18 views
SQL Server 2000 vs SQL Server 2008 Query Performance
I'm working with a client who had a SQL Server 2008 converted from a SQL Server 2000 DB and one of the queries has quite dramatically increased in time since it was on SQL Server 2 …
1
vote
3answers
32 views
Troubles formatting if statements in SQL
I've created the following sql statement, every thing in $() is a variable (comes from the module we're using on our site so $(varname) is the right format in this case, not @varna …
1
vote
7answers
60 views
SQL Server - bulk delete (truncate vs delete)
Hello folks,
We have a table with a 150+million records. We need to clear/delete all rows. Delete operation would take forever due to it writing to the t-logs and we cannot chang …
0
votes
2answers
52 views
SQL Delete When column a and column b does not exist.
Ok, so you have something like this working. You Insert into a table from a tmp table, where the Equipment Number and the Account Number are missing...
Insert INTO ClientEquipment …
2
votes
3answers
57 views
SQL: Deleting duplicate records in SQL Server
hi!
I have an sql server database, that I pre-loaded with a ton of rows of data.
Unfortunately, there is no primary key in the database, and there is now duplicate information in …
0
votes
2answers
26 views
Procedurally transform subquery into join
Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a …
2
votes
3answers
32 views
Get the last children from database
My situation:
Table A
(
ID
Parent_Id
TimeStamp
)
The root has Parent_Id null and children has Id of its father.
I simple want to get all LAST children of every Table A.
Father …
1
vote
4answers
38 views
efficiency of SQL ‘LIKE’ statement with large number of clauses
I need to extract information from a text field which can contain one of many values. The SQL looks like:
SELECT fieldname
FROM table
WHERE bigtextfield LIKE '%val1%'
OR bigtex …
0
votes
12answers
92 views
Select * vs Specifying Column Names
What are the performance differences between using SELECT * FROM SOMETABLE versus SELECT COL1, COL2 FROM SOMETABLE when you want the same number of columns from both statements? Is …
1
vote
4answers
30 views
MySQL: Get all records that have an id for one year but not another
Hi,
I have a table:
HOST_ID | ContractYear
1 | 2008
2 | 2008
3 | 2008
1 | 2009
4 | 2009
What I need is a query that will tell me all the HOST_ID's …
1
vote
5answers
50 views
What characters ARE allowed when querying a mysql database?
I have a textarea in a form, when I enter special characters in it, I get an error in mysql. (when submitting the form to a php-file which does the work of inserting into mysql)
I …
2
votes
6answers
35 views
Optimize SQL query for canceled orders
Here is a subset of my tables:
orders:
- order_id
- customer_id
order_products:
- order_id
- order_product_id (unique key)
- canceled
I want to select all orders (order_id …
