Viewing 15 posts - 1,156 through 1,170 (of 1,353 total)
If you have any option to use SSIS (SQL 2K5) instead, you can automatically reroute dups to a text file or even just ignore them. A nice improvement I've...
January 29, 2008 at 5:46 am
Even for an audit table I would use a surrogate primary key because I may have need to join to that. The article makes a great case for this...
December 11, 2007 at 3:20 am
I'd like to add a little dissent here to see what you all think.
I've never been in favor of using this universally just because it makes sense in some areas...
December 7, 2007 at 7:43 am
Granting access to only portions of the data is fairly easy if you are using SQL 2k, and this has supposedly gotten easier in SQL 2k5. The security is...
December 7, 2007 at 7:26 am
I think you need to look at your table structure as a starting point. Your table with the student and class id have fields, which is the natural...
December 7, 2007 at 6:09 am
It would also be good to know the "penalty" that NOT having RI has on ordinary select statements so that orphan records would either be or not be returned as...
November 20, 2007 at 8:40 am
MelS (11/19/2007)
November 19, 2007 at 8:29 am
While having NULLS in the FK relation isn't unusual in itself, the fact that you have an "object" table seems to hold different kinds of entities suggests on the face...
November 16, 2007 at 4:41 am
When I took over in one place as DBA, I convinced him to let me put any db in question in a read only status. Although that generated a...
November 14, 2007 at 9:37 am
SQL Noob (11/14/2007)
we have very few FK's where i...
November 14, 2007 at 9:23 am
I think foreign keys are crucial, but I don't think you notice what they do till they're not there. I've seen many third-party databases that don't have them, however,...
November 14, 2007 at 8:12 am
I've seen previous instances of consultants dropping the entire database and reconstructing it because the problem of solving processing updates can take a long time, and depending on the cost...
October 10, 2007 at 1:10 pm
With apologies, I should have also suggested READ UNCOMMITTED as a possible solution. It doesn't prevent a dirty read, but as I already said, for reports, that's usually not an...
September 19, 2007 at 9:16 am
It depends what you want to do. The big picture: the developer version is a complete version of SQL Server, but can't be used in production. The express version is...
September 19, 2007 at 9:06 am
Dumping it into a temp table isn't hard, but you could also consider using derived tables. The derived table is calculated within your parenthesis. I've included a link to a...
September 5, 2007 at 10:23 am
Viewing 15 posts - 1,156 through 1,170 (of 1,353 total)