Viewing 15 posts - 5,956 through 5,970 (of 5,986 total)
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
As an alternative to SQL Server Agent, you could use Windows Scheduler and PowerShell scripts.
http://www.eggheadcafe.com/software/aspnet/30631798/server-2003-task-schedule.aspx
10 GB could accomodate an inventory of several hundred thousand items and tens...
May 5, 2010 at 8:55 am
It sounds like you've got something working with SMO, but as a side note for anyone interested, the following will list all parameters of datatype 'smallint' for all user created...
May 5, 2010 at 8:31 am
Eric, you touched a raw nerve by suggesting Access over SQL Server, so expect a bit of hate. With that said...
Microsoft Access offers no real protection over SQL Server with...
May 4, 2010 at 3:03 pm
Execute a "checkpoint", and then again confirm if the secondary file has increased in size.
May 4, 2010 at 1:10 pm
If someone is developing something like a desktop application for release as shareware, and they feel it's important to protect the contents of proprietary reference tables and SQL queries, then...
May 4, 2010 at 12:38 pm
Viewing 15 posts - 5,956 through 5,970 (of 5,986 total)