Forum Replies Created

Viewing 15 posts - 5,956 through 5,970 (of 5,986 total)

  • RE: Getting Colorful

    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".

  • RE: SQL Server DBA.... what next?

    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...

  • RE: rarely used procedures in db

    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...

  • RE: SQL Server DBA.... what next?

    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....

  • RE: rarely used procedures in db

    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...

  • RE: SQL Server DBA.... what next?

    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...

  • RE: DataBase designe

    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...

  • RE: DataBase designe

    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...

  • RE: SQL Server DBA.... what next?

    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...

  • RE: Double counting reads in profiler

    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*/...

  • RE: New higher database size on SQL Server 2008 R2 Express, more viable for business?

    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...

  • RE: How to change a stored proc's parameter datatype - without editing a CREATE PROC script

    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...

  • RE: Stored Procedure's Security

    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...

  • RE: Create a column in different filegroup

    Execute a "checkpoint", and then again confirm if the secondary file has increased in size.

  • RE: Stored Procedure's Security

    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...

Viewing 15 posts - 5,956 through 5,970 (of 5,986 total)