1. By law, Red signal means STOP. So if you see a Red signal come to a complete STOP. But there are little exceptions to this. In case you are taking a right turn, and you see a Circular Red Light, first STOP and then proceed with yeild. If you take a right turn on Red without stopping properly and got flashed then you are bound to get a ticket.
2. Try to memorize all intersections where there are Camera’s. When you approach these intersections come to the recomended speed and drive, even if there is a Green signal. If the signal turns to Yellow, follow this rule;
a. If your speed is 40mph and you are behind 25-30 meters from the Crosswalk( a pair of white lines for Pedestrians). You can easily cross over the intersection. Why because at 40mph your vehicle would travle almost 18 meters in a second and after the Green turns Red, it should stay for at least 4 seconds. So you have room to cover 30 meters with in two seconds and rest two seconds to cross the intersection.
b. The measure of 25-30 meters is almost equal to 4 cars length.Do a intelligent guess as if you are behind 4 cars length, then you can easily cover the distance.
c. If you are more than this distance from the Crosswalk, apply break and stop slowly. Remember, try to reach the first line of the Crosswalk at a speed not more than 5-10 mph. Cameras are programmed to take photos with a higher speed only. But this does not mean that you can cross in low speed.
3. When you are behind a vehicle and nearing the intersection, try keeping at least two car lenth distance, so that when that vehicle crosses in Green and then the light turns Yellow, you too can cross
the intersection without any hesitation.
4. Try not to follow the vehicle blindly. If there is a lengthy gap in between you and the other vehicle, chances are there that you might get flashed.
What to do if you have already got a ticket.
There are a couple of very good sites, which provides good information about how to fight a ticket in case if you have already got one. They also respond to your mail in case if you would like to get any specific guidance. I liked both of them. The site “ticketassasin” might charge a very minimal fees, but they give step by step guidance on how to initiate and proceed with the trial. Just to let you know that you might not win over every ticket you get, but when the case is genuine and also on “right turns” there is a good chance that you will make it through or at least get a reduction in fines. But always remember to drive safely…
If you are planning to take Traffic School, then I would suggest you take it online. Read the following article
How to Select A Good Online Traffic school. In that I have recommended the following school.
Our Random Articles
- Somdev Devvarman ousts Xavier Malisse 6-1, 3-6,7-6(5)
- How To Choose A Good Online Traffic School
- New Year Wishes 2010
- New Year Wishes
- How to use EXTRACT function with date and time columns
More Links




4 Comments
Material that you are providing is very easy to learn. But it is much better than this , if you ll give the full material of this at ONE LINK.
Thank you
Suresh.
That is right Suresh. This is the reason I have given all the links in one page, please visit this
http://readvitamin.com/teradata/
Hope this helps.
Hi. Can anyone tell me how to extract time from timestamp?
For Example
timestamp=’2008-03-28 14:11:04′
i want time ’14:11:04′ from timestamp through query.
Thanks in advance.
Hi Vaideesh,
If you need only time, you can probably try the following;
SELECT time;
To answer your question you should do something like this.
SELECT CAST(VaideeshTime as time(0)) from timestamp;
VaideeshTime
——–
14:11:04
Hope that helps.