Forum Replies Created

Viewing 15 posts - 31 through 45 (of 58 total)

  • RE: Stored Procedures Reconsidered

    Who is responsible for good database design and documentation when programmers are using these ORM tools that trivialize creation of the DAL? Very clever programmers with not much understanding...

  • RE: Stored Procedures Reconsidered

    I write to make the point that development standards differ depending on whether an application is being written for sale as a software product or for use within the company...

  • RE: Capturing Missing Information From SQL Profiler

    Thank you.  I never thought of doing this.

  • RE: What Kind of DBA Are You?

    >>>

    I work for a large-ish company where SQL Servers exist but are not recognized.

    A company that has millions of $$ wrapped up in MS products but yet still does...

  • RE: What Kind of DBA Are You?

    I have supported SQL Server databases for different types of companies-- a vendor of an ERP application written on platforms Ingres and  SQL Server 6.5; a manufacturing company that purchased...

  • RE: Automated Monitoring Database Size Using sp_spaceused

    This trick eliminates loop as well as cursor. 

     

    1) generate a script

    select 'insert into #t exec sp_dba_spaceused ' + name

    from sysobjects where type = 'u'

    order by 1

     

    2) run the...

  • RE: Automated Monitoring Database Size Using sp_spaceused

    Thanks for including discussion of your methodical development and validation of this DBA utility you present.  It's my opinion that writing and using scripts built on sp_msforeachdb is the mark of a true...

  • RE: xp_ExecResultSet

    I posted on this last spring---

     

    Thanks for mentioning that the xp_execresultset is missing from SQL Server 2005.

    Yikes!  Before retiring your SQL Server 2000 servers, do this--

    1) Copy proc sp_execresultset...

  • RE: Using XP_EXECRESULTSET To Obtain Database Size Information and More

    Thanks for mentioning that the xp_execresultset is missing from SQL Server 2005.  Yikes!  Before retiring your SQL Server 2000 servers, do this--

     

    1) Copy proc sp_execresultset from the master database of...

  • RE: SQL Server 2000 Query Analyzer icon

    Wow.  Google is everything.  Thank you.

  • RE: Leveraging XP Excel , XML, and OPENXML for Data Imports

    Excel is a source for DTS.  No need for openrowset either.  Just edit the worksheet to make (only) row A the column headers, point to the file after choosing the...

  • RE: Calling All Editing Buffs

    Consider that SQL Server runs only on top of Windows, so we assume copy and paste between windows.  I edit complex scripts in one window, using the editor I use...

  • RE: Calling All Editing Buffs

    I use Epsilon programmer's editor (little E for PC, evolved from Emacs) which I learned at Carnegie Mellon almost 20 years ago.  Notepad/Wordpad and application development environments with built-in editors...

  • RE: How To PROTECT SQL Server Database Files ?

    Our company uses Great Plains accounting, one of the Microsoft Business Solutions, on SQL Server database. As the sa and dbo, I see all the tables and procedures. ...

  • RE: How To PROTECT SQL Server Database Files ?

    If you think some real data owners are going to allow a SQL Server installation for which they don't have the sa password, you are living on planet dinky Access.

Viewing 15 posts - 31 through 45 (of 58 total)