Forum Replies Created

Viewing 15 posts - 2,281 through 2,295 (of 3,678 total)

  • RE: Performance Effects of NOCOUNT

    Sorry Jon, but it is a common use case in a sales order system.

    You are right that the example was contrived. I did say in the article that it...

  • RE: Performance Effects of NOCOUNT

    I use SET NOCOUNT ON wherever possible. There seems little point gain in stored procedures only to lose in triggers.

  • RE: Performance Effects of NOCOUNT

    Back in time of ADO (NOT .Net) the returned message sometimes was treated as a Recordset...

    I didn't come across this problem with ADO but at one place I worked they...

  • RE: A Bad, Bad World

    It doesn't matter what the system is there will always be someone who tries (and suceeds) to crack it.

    In the UK there is a government database that has been set...

  • RE: Row-By-Row Processing Without Cursor

    I have seen cursors out-perform a non-cursor method of looping through records.

    The key is knowing exactly when a cursor is necessary or alternatively, when some nifty set based SQL will...

  • RE: Row-By-Row Processing Without Cursor

    I am wary of anything that involves string manipulation because strings are immutable.

    If you do something that says @YourString = @YourString + 'Some text' then what really happens is that

    @YourString...

  • RE: A Global Reach

    I worked on government sites that required Urdu, Bengali, Gujarati, Punjabi etc.

    The problem with those languages is that there is NO standard font for them and therefore you are at...

  • RE: Naming Conventions

    I think the important thing is not what the standard is but the fact that there is a standard.

    Company A may have a totally different standard than Company B but...

  • RE: Naming Conventions

    I have come across a scenario where I have to move a table from an application specific database to a database that is shared by all applications.

    Given that it is...

  • RE: Tools You Need

    I would vote for Innovasys DocumentX and Apex SQL Doc as documentation tools.

  • RE: VS 2005 Project of type Database Project

    OK I am particularly interested in developing CLR functions, aggregates and procedures.

    Does anyone know of a download that would provide the datatypes or is there a general work around...

  • RE: How Do You Work?

    I think censorship is OK provided it correctly identifies work related sites.

    The problem comes in identifying those legitemate work related sites.

  • RE: Resizing Transaction Log

    After shrinking the log look up ALTER DATABASE MODFIY FILE in Books on Line.

  • RE: Resizing Transaction Log

    Firstly back up the transaction log.

    Next run sp_helpdb 'YourDatabaseName'

    Note the name of the log device

    now run DBCC SHRINKFILE('TheLogFileName','Your desired size')

  • RE: remote stored procedure

    If the server is a linked server then SQLServer1.pubs.dbo.checkcontract should have worked.

    You do have to tell SQL Server to create a linked server with the appropriate credentials though.

Viewing 15 posts - 2,281 through 2,295 (of 3,678 total)