Viewing 15 posts - 2,731 through 2,745 (of 3,008 total)
The link I supplied is production code in use at my company and I believe a number of others. If you want some more examples of how it is used,...
July 26, 2007 at 7:20 am
The probable reason for wanting you resign is so you can't collect unemployment. If they lay you off or fire you without cause, you would be eligible to collect unemployment. ...
July 26, 2007 at 6:35 am
I think this is a better solution.
It will be faster than a UDF.
It is easier to scale up to as many columns as you need than using a CASE statement,...
July 25, 2007 at 1:38 pm
I gave two examples where a cross join could be used in my first post.
It is common to have a table with configuration or default information with a single row. To add...
July 25, 2007 at 10:12 am
There is no reason to assume that the amount of SQL Server memory usage is related to the page file usage.
Take a look at the Performance Monitor, Process, Working Set...
July 25, 2007 at 10:06 am
Everyone is making this too hard. Do it this way, it will make it impossible for anyone to be in the database becase it will be offline.
use master
go
alter...
July 25, 2007 at 9:55 am
Cross joins have their place, and are not something that you should avoid. Like anything else, they should be used when and only when they are needed. The same is...
July 25, 2007 at 9:31 am
I recently had a discussion with a recruiter where I told him I didn’t want to interview a candidate because of the poor English in the resume: misspellings, bad punctuation,...
July 25, 2007 at 7:51 am
We follow this naming convention, and actually enforce it.
Table name: T_entitynameExample: T_ORDER_ITEM
Identity Column Name: entityname_IDExample: ORDER_ITEM_ID
Primary Key Name (name of the PK constraint, not the column) PK_tablenameExample: PK_T_ORDER_ITEM
July 24, 2007 at 3:30 pm
A cross join is used when you need to join without a join condition. One case would be when you have a table with a single row.
Another case would be...
July 24, 2007 at 2:07 pm
Lots of developers try to blame the poor performance of their poorly designed and implemented queries on some “black art” or “unknowable mystery” deep within the database engine.
Really, it’s just...
July 23, 2007 at 3:04 pm
>> Something happened by itself.
That's extremely unlikely.
Who was the database owner before this happened?
July 23, 2007 at 2:47 pm
The biggest hole in the Business Intelligence paradigm is that it assumes that there is some consumer for the system who will be able to use the information provided to...
July 23, 2007 at 12:07 pm
Those error could not have come from the script on that link.
The errors are coming from some create table statements that you must have added.
July 23, 2007 at 11:36 am
Viewing 15 posts - 2,731 through 2,745 (of 3,008 total)