Forum Replies Created

Viewing 15 posts - 4,771 through 4,785 (of 7,429 total)

  • RE: Login: Sql authentication works; NT authen fails

    Unfortuantely this has to do with the token passed during a windows session logon. This is why we use a domain for our server and us. Try logging into the...

  • RE: How to make SQL job step failed

    It is considered safer and better to use the RAISERROR method than divide by zero. It is also considered poor programming to use divide by zero on purpose (standard practice,...

  • RE: Constraints

    Here is ther SQL BOL version of that

    quote:


    Microsoft® SQL Server™ 2000 provides two primary mechanisms for enforcing business rules and data integrity:...

  • RE: Constraints

    Also, it has to do with the order of execution. Triggers execute at the point of commit and have to rollback, this is why it can see the inserted and...

  • RE: New computer & SQL EM Registrations

    If I remember correctly the information is somewhere in the registry for the registered servers but I do not know off hand where.

    "Don't roll your eyes at me. I will...

  • RE: new database server for every application

    The biggest reason for this is vendors do not want to be responsible for any issue that could be related to other activity on the box. We have one app...

  • RE: Trouble with a View

    I would suggest using sp_refreshview as suggested and see if corrects. If does then you may have made a change to the tables referenced in the view that upset the...

  • RE: Count as output parameter

    Look at @@ROWCOUNT in SQL BOL. However with ADO depending on the cursor type there is a parameter of the recordset object .RecordCount that will work as well.

    "Don't roll your...

  • RE: Suggestion of book for starters?

    Also in SQL Books Online there are several or so comparisons with SQL to ORACLE code for help. Anything specific you may need to ask. But I liked the WROX...

  • RE: Executing an SP from a SELECT stmt

    Note: on the openrowset or even a linked server using openquery back to itself has some major flaws. One I believe you have to turn on Data Access for those...

  • RE: Eratic behaviour

    I would suspect that you don't have enough memory and a lot of large queries that need different data. If this is the case then the cache hit ratio will...

  • RE: Using DTS to write from DB to Excel

    Then you will need to do a query transaction instead of a transformation. Otherwise use a query to truncate the spreadsheet and just rewrite the data to it.

    "Don't roll your...

  • RE: Embedding a 'UDF' in a SP in version 7

    SQL 7 does not support user defined funtions. And you cannot use an SP inline with a Select statement.

    "Don't roll your eyes at me. I will tape them in place."...

  • RE: No uncataloged sets were found on the tape.

    I believe this comes from a tape put in the drive that contained a previous backup not listed in the backupmediaset tables in msdb database. They can of course be...

  • RE: Favorite SQL Server Magazine?

    Also, besides here which allows you to retain the copyright there are a handfull of other sites. The most popular site I can think of other than here is http://www.sql-server-performance.com...

Viewing 15 posts - 4,771 through 4,785 (of 7,429 total)