Viewing 15 posts - 5,986 through 6,000 (of 6,022 total)
I believe that referential integrity constraints are important in a database. If you have data models for two or three tightly integrated applications with overlapping foreign keys and sharing of...
May 10, 2010 at 6:52 am
Linking Servers:
http://msdn.microsoft.com/en-us/library/ms188279.aspx
Once you have created a linked server object for the remote server, there are several options for returning a resulset and joining it with local tables.
For...
May 7, 2010 at 3:21 pm
PaulB-TheOneAndOnly (5/7/2010)
eric_russell 13013 (5/7/2010)
In the second episode, the guest developer describes his solution step by step and then gets candid feedback and reaction from the original developer.
Can the original developer...
May 7, 2010 at 1:13 pm
I think we need a new podcast series on MSDN or somewhere, and base it on the TV series 'Trading Spaces'. It could be called perhaps 'Trading Schemas'. Two developers...
May 7, 2010 at 12:53 pm
Since ClientID is not unqiue, then I assume the purpose of this ClientNum is to create a composite primary key. You can persist a calculated column using the PERSISTED clause,...
May 7, 2010 at 9:54 am
Code that is basically functional, something good enough for internal users, but not good enough for release to the public, is "not ready for prime time".
May 7, 2010 at 8:26 am
This discussion just underscores why it's imporatant to always have at least 2 admins and 2 developers who know your database, just in case someone steps in front of a...
May 7, 2010 at 8:18 am
How appropriate my previous query is depends on how someone intends to use the information. I wouldn't use this info exclusively to decide which stored procedures can be identified as...
May 7, 2010 at 8:08 am
Well, if being a SQL Server 2008 DBA has become a bore, you could always spend the next 100 years attempting to master Oracle database administration on the Linux platform....
May 6, 2010 at 12:43 pm
The following query returns the name, execution count, min/max execution time, etc. for all stored procedures. It can also be extended to include CPU utilization and also performance metrics simply...
May 6, 2010 at 11:14 am
Getting involved with business intelligence tools like SSIS, SSAS, and SSRS will give your job some variety while leveraging your existing SQL Server knowledge. It will also get you out...
May 6, 2010 at 10:11 am
If there are well defined logical relationships between types of users, then you definately need to enforce this with foreign key constraints, or else referential integrity and performance issues will...
May 6, 2010 at 10:02 am
You said that both companies and individuals are basically 'users', which I assume means that they both login to the application with a profile and perform similar tasks. There could...
May 6, 2010 at 8:46 am
You stated "I was trained on SQL Server 2000 and pushed into Database Administrations..." as if it wasn't your choice to make. You also mention you're not having fun, the...
May 6, 2010 at 8:36 am
In my proc, I have the following two lines:
select @sql = 'insert into lookups (fieldname) select distinct '+QUOTENAME(@fieldname)+' from '+QUOTENAME(@tablename)+' where '+QUOTENAME(@fieldname)+' IS NOT NULL and ltrim(rtrim(convert(nvarchar(max),'+QUOTENAME(@fieldname)+'))) <> ''\'''
exec /*test*/...
May 6, 2010 at 8:24 am
Viewing 15 posts - 5,986 through 6,000 (of 6,022 total)