Guy
|
Registered User
|
Database manager and DBA for SQL Server and Oracle. IT Operational Support manager (a technincal boss). Occasional classic ASP and C# web programmer.
|
|
Nov 13 |
awarded | ● Famous Question |
|
Sep 25 |
comment |
Business Logic in Database versus Code? I'm a DBA. DATA logic should be in the database. The way you manipulate the database structures to perform the activities required by the functionality SHOULD BE held in the database. When you join up these activities into a larger series of processes (business logic) then THIS can be consolidated in the application. |
|
Sep 25 |
comment |
Enhance performance of large slow dataloading query Your going to run those functions for ALL 1,000,000 records? Yes, it's going to take some time to run - certainly not in milliseconds is it. What are your expectations? |
|
Sep 25 |
comment |
Enhance performance of large slow dataloading query (-1) Use Set based SQL - not record by record. Try to use native SQL functions which are fast. Use the DB as a DB - it is built for joins / updates / queries. Don't think that you can rewite the database in your our programming skills. |
|
Aug 26 |
answered | What are your most common sql optimizations? |
|
Aug 26 |
comment |
What are your most common sql optimizations? RUZZ - Why? You've given a list of unqualified statements with no explanation. If people are to learn "the right way to use SQL" then you must educate them. (I agree with most of your statements, but as a DBA I understand them. Novice developers probably don't.) |
|
Aug 24 |
awarded | ● Popular Question |
|
Aug 12 |
awarded | ● Yearling |
|
Jul 28 |
awarded | ● Enlightened |
|
Jul 28 |
awarded | ● Nice Answer |
|
Jul 8 |
awarded | ● Disciplined |
|
Jun 17 |
comment |
oracle query with multiple subqueries You need to give more detail of the source tables (and data) and what you are expecting the results to look like. I'd also be specific about the Oracle version. Later versions implement a "PIVOT" clause to convert "rows" into "columns". |
