Basic Page Optimization
Jun 5
Page load time is very important, if a page takes too long to load some users will just leave and may never come back. Below are two tools that I find very useful when doing page optimizations.
Jun 5
posted by Bridget Maloney in
Optimization, Javascript, Usability, CSS, Coldfusion
| 1 Comments
Page load time is very important, if a page takes too long to load some users will just leave and may never come back. Below are two tools that I find very useful when doing page optimizations.
This entry was posted on June 5, 2009 at 3:25 PM and has received 745 views. There are currently 1 comments. Print this entry.
Good morning folks,
Here's a couple new tips today to make life easier in SQL. When analyzing queries there are two tools which are great for examining resource usage. The first is the STATISTICS IO. You can turn this on by setting the results to text, and prepending your query with the following:
This will allow you to view the table read and read-ahead data related to the query. Once it's on it will stay on within the query window you use it in.
Here is a simple example of how it''s used:
Whenever I use this functioanlity I use it in tandem with an execution plan. To activate your execution plan, right click on the query window in the query analyzer, and select "Include Actual Execution Plan". You then run your query and a new tab will appear next to the results pane called "Execution Plan". This will show the "path" that SQL takes in deciding how a query is processed. When you hover over icons in this window you'll find that you can see the data pertaining to each specific element of the query as well. Keep an eye out for "CONVERT" functions and "CAST" functions in this window, as preventing these by typing your data correct can save a lot of headaches. Additionally you can see which indexes SQL uses to grab it's data.
This entry was posted on May 21, 2009 at 10:00 AM and has received 537 views. There are currently 0 comments. Print this entry.
| << February 2012 >> | ||||||
| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | |||
Help Wanted: Web Application Developer
Travis said: I wish I was in a position to move. I'd love to live back north. Good luck.
[More]
SQL Prettifier (Lint) Tool
jfrobishow said: Great link, thanks for sharing it.
I can see this being very useful debuguing complex queries.
S...
[More]
Connecting to HTTPS urls via CFHTTP when the imported certificate fails
jalpino said: Wow... that is definitely something to be conscious of in the future, thanks for the tip.
[More]
How I (Isaac) got started in ColdFusion
Phillip Senn said: At least you didn't say "pound my ..."
[More]
Common Problem - Simple Solution: Adding quotes to ValueList in ColdFusion
Jonathan said: awesome! just what i was looking for - i am constantly having to use a comma separated list in a cfq...
[More]