Viewing 11 posts - 16 through 26 (of 26 total)
Having AS as optional seems a little loose to me.
September 12, 2007 at 11:16 pm
The outer join will ensure that all records from fSystemCalendarRollups are grouped and returned in the result set.
Where the outer join was unsuccessful the values in the fLabourRedDayParts will be...
September 11, 2007 at 6:13 pm
Is there a case for not using a temp table or table variable at all? If you wrap your temp table select statement in the from clause of your insert...
September 11, 2007 at 2:31 am
Is there changes to the INSERT statement in SS2K8? I would like to be able to specify the value to be inserted into a column next to its definition in...
September 10, 2007 at 11:21 pm
How are the chances of using indexes diminished? I ran this script to see how conversions deal with clustered indexes. For this test it still used the clustered indexes in...
April 11, 2007 at 8:40 pm
I found in a situation where you want to join by date only, convert your two date columns to its integer representation in the JOIN or WHERE clause when comparing...
April 11, 2007 at 7:59 pm
Another thing that helped the performance of this table is having the id column as the integer representation of that particular day.
Eg. With today being 11/04/2007 (dd/mm/yyyy)
SELECT 'TodayAsInt' =...
April 10, 2007 at 11:17 pm
Yeah I can see the simplicity of that.
Another thought to bring into the equation is the benefits of having a single row for each day of the year within the...
April 10, 2007 at 9:27 pm
I guess its a case of multiple dates with one region or one date with multiple regions.
April 10, 2007 at 8:35 pm
What if your country has different public holidays within each individual state or you need to have public holidays for many countries within the same table?
A simple way to...
April 10, 2007 at 6:42 pm
Viewing 11 posts - 16 through 26 (of 26 total)