Forum Replies Created

Viewing 15 posts - 916 through 930 (of 1,271 total)

  • RE: 2000 Replication job wont run on 2005

    I don't see the -ReplicationType flag in your command. Perhaps it is optional in SQL 2000 but required in 2005. I'm guessing on this one. Try adding the flag to...

  • RE: Switching of a table

    There is an issue with using sp_rename. It does not trigger a DDL event. So if you have Database or Server Triggers that are watching for DDL events, then you...

  • RE: question on how to create 1 new sp to call 2 other sp''''s?

    Adding to what Mark posted above, this would show you the rows that were identical in both:

    select * from Sep2006

    INTERSECT

    select * from Sep2005

  • RE: Mirror question (with MS CRM 3)

    To be able to "Read" the mirror requires creating a database snapshot of the mirror database which requires the Enterprise Edition. Not worth the cost in my mind if the...

  • RE: Ambiguous column in WHERE join on sysobjects

    The issue with aliases in SQL 2000 was if you had an alias that was the same as a column name, it would use the column in Order By clauses...

  • RE: SQL2005 error

    The OS and/or other applications on the server are using too much memory. SQL Server can not get enough memory to run CLR.

    Firt of all, you need more memory. I...

  • RE: Should I use NOLOCKS?

    I'm on the other side of the fence. It is in the standards i have written for developers to use. I require the use of nolock except in cases where...

  • RE: SP_SPACEUSED

    My boss asked me yesterday to tell him the size of our largest database and our average database size, so I wrote the following script yesterday that uses sys.database_files to...

  • RE: Need Some Help Here

    Why can't you just do this:

    Declare

    @strSQL nvarchar(max)

    SELECT

    @strSQL = '...

  • RE: Data design/ datetime

    Since you're using SQL 2005, if you really want to have separate date and time columns, I would use a datetime column to store the datatime and then add 2...

  • RE: Question About Database Mirroring

    Just do check, do you have the .Net framword 2.0 installed on that server? Did you install Service Pack 1 for SQL Server Express?

  • RE: Question About Database Mirroring

    SQL Agent must not be needed for this then.

  • RE: Question About Database Mirroring

    To be honest, i've never used SQL Server Express. I would assume that it has it, but I can't be sure.

  • RE: Question About Database Mirroring

    Where are you seeing this? In the Management Studio? The little server in the registered servers with the green circle and a while triangle means that it is running. If...

  • RE: Question About Database Mirroring

    No, the MS tech was correct. SQL Server express can be the witness. I'm not using it as a witness in my environment, but many people are. What I am...

Viewing 15 posts - 916 through 930 (of 1,271 total)