Forum Replies Created

Viewing 15 posts - 2,536 through 2,550 (of 3,616 total)

  • RE: truncate_only

    The advice to backup the database after doing a truncate_only is because truncate_only removes checkpointed transactions from the log and therefore you have lost your ability to restore to a...

  • RE: New Poll

    Sam, I'm with you on this but I would say there is one over-riding cause of all project failures and that is a break-down in communication.

    It doesn't matter if it...

  • RE: 90 Minute TiVo

    I've lost count of the number of times I've sat through a recording of a TV show, adverts and all and then had either one of two thoughts

    a) Hang on...

  • RE: 90 Minute TiVo

    Guys, in the UK it has been illegal to tape records (remember those) and CDs for as long as I can remember. It is an entirely toothless law because...

  • RE: Stored Procedure with NTEXT argument

    Off the top of my head (I don't have SQL at home) I'm not sure if TEXT and NTEXT are allowed as output parameters but the general format is

    CREATE PROC...

  • RE: Sybase ASE OLE DB Provider

    Assuming that ISQL on Sybase is the equivalent of OSQL in SQL Server then the easiest way of using a batch file to create tables is to create a text...

  • RE: check that a column exists or not on a table

    Or even

    SELECT name FROM syscolumns WHERE id=object_id('dbo.TBL1')

  • RE: Login Problem ??

    Wrap up your code in a Try, Catch block

  • RE: Database Performance Issue

    I need a lot more information to give anything other than general advice.

    Is your data access via stored procedures?

    Are there indexes where they should be on the fields?

    What is the...

  • RE: SQL Server memory usage question: 10GB

    Does the account used for the MSSQLSERVER service have "Lock Pages In Memory" privileges. Even if the account is an administrator it won't have these by default.

    SQL...

  • RE: Need help with Stored Procedure syntax

    If you are going to do searches within an ASP page then my approach would be to :

    • create a VIEW for the SELECT and FROM part of your query
    • Build up...
  • RE: Problem in finding the max value of name in my views table. any help?

    Well try changing the WHERE clause to

    WHERE Name LIKE 'View[0-9]%'

  • RE: Blocking TCP Port 1433?

    The firewall admins asked me what I would recommend.

  • RE: New Poll

    The CEO in my last place was also the owner of the company and he observed that there is a difference in attitude between the US and the UK.

    Failure is...

  • RE: Sybase ASE OLE DB Provider

    Can we assume that the web server can use THEFORCE?

    Have your tried replacing Data Source=THEFORCE with Server=THEFORCE?

Viewing 15 posts - 2,536 through 2,550 (of 3,616 total)