Forum Replies Created

Viewing 15 posts - 1,051 through 1,065 (of 1,271 total)

  • RE: Faster way to edit a view (than using modify)

    Nope, that's it.

  • RE: Database Mirroring: fails when enable button is activated

    Your port declarations in your post don't match. You say that you are using port 7024, but the network address is specifying port 5022. Check your port declarations. If that...

  • RE: Help - Send Email Task quit working in DTS packages.

    Which service pack are you using?  This was a well known bug in SQL 2000. SQLMail would just stop responding. The problem was greatly improved by service pack 4, but...

  • RE: How do you do logical/physical ERD''''s?

    Each developer has their own personal SQL Server on their system. There is not a single unified development system. Pre-production (test) is backfilled from production every Monday and is controlled...

  • RE: Function

    What is the error? Please be more forthcoming with information. You'll get more help if we don't have to drag it out of you.

  • RE: Function

    Is there something specific that you need help with? I've included the syntax for functions below.

     

    The syntax of a function from Books Online:

    Syntax

  • RE: Error converting data type varchar to numeric

    That line will give you an error in SQL 2000 as well. The error is caused by the IsNull() function, and is not related to your data type conversion. Empty string...

  • RE: Function

    Okay, so what exactly do you need help with?

  • RE: I need help on a good locking and rollback strategy

    Create a stored procedure and allow the transaction to be rolled back within the procedure. And like John said, do 1 query, not two.

  • RE: Subquery Issue

    ROWCOUNT is being deprecated. It still works in 2005, but it probably won't be fully supported in future versions. I wouldn't rely too heavily on it. From BOL for SQL 2005:

  • RE: Cannot Add replication services after SP1 upgrade

    You don't need to do a complete reinstall. SQL will let you install individual components. Run the setup program and follow through telling it to install only the replication component.

  • RE: Mirroring for certain tables from the database in sql 2005

    Definitely not. Like Chris said, it is database level. Sounds like you want replication instead.

  • RE: Log shipping monitor out of sync

    Are the jobs using Windows Authentication or a SQL account to update the monitor? If using a SQL account and the password has changed, you will need to update it...

  • RE: Filtering bad data on NVARCHAR

    My, Grandma!! What a big user defined function you have!!

     

  • RE: Filtering bad data on NVARCHAR

    Good points. Not to mention that there is always the possibility that an all numerical value could be out of range. For example, a string of 100 1's would pass...

  • Viewing 15 posts - 1,051 through 1,065 (of 1,271 total)