Forum Replies Created

Viewing 15 posts - 661 through 675 (of 1,655 total)

  • RE: How to implement Unidirectional Merge Replication in SQL 2005

    Ian, is right that usually if you want unidirectional replication, transactional replication should be the best option. But there are cases that that's not possible g.e. if you have tables...

  • RE: DBCC

    I also found the wording of the question a bit dubious. How should I know what somebody tries to achieve. It wouldn't be the first time that someone executes a...

  • RE: extract part of string

    Oops, stupid mistake

    Madhivanan, thanks for correcting me.

  • RE: Unable to View Image in Report Viewer

    When you add an image to a report you can choose if it's embedded in the report or not. In the second case you need to upload the image to...

  • RE: "Move to" new filegroup

    The image data is still in the original filegroup. De clustered index only contains a 16 byte pointer but not the whole image. You can define the location of text...

  • RE: Unable to drop constraint

    I hope this teaches you not to change systemtables anymore, especially when you don't really know what you're doing.

    The only option you have is to restore the database. Just...

  • RE: Replication

    Is this a question ? What do you mean by RPC issue? Why did you call this post "Replication"?

  • RE: How to change or set server current datetime

    The system time is depending on windows. It's not something you configure in SQL server.

    See here how to sync the time between windows servers

    http://support.microsoft.com/kb/816042

  • RE: Way for an end user to execute a backup maint plan on demand - run a batch file?

    You should definetely use a stored procedure because like that you can contril the permission necessary. Normal users don't have enough permissions to make backups. By ussing the EXECUTE AS...

  • RE: Geting error to drop a table

    Run DBCC CHECKTABLE to get more info about whatis wrong.

    Since you want to drop the table anyway you can also use the option REPAIR_ALLOW_DATA_LOSS

  • RE: extract part of string

    shiwani2002sg (11/13/2008)


    if i have some values like

    aa ???

    dd

    jukin ???

    kdf ???

    dfe

    de

    d ???

    now i wish to extract values having ??? at the end but extract them without ???

    like i want...

  • RE: SQL SERVER 2005 DB MAIL

    I think the problem is that you try to use the error message. Did you try to use the error number 1480 instead?

    EXEC msdb.dbo.sp_add_alert @name=N'Database Mirroring',

    ...

  • RE: MSSQL 2000 and 2005 COEXIST on CLUSTER??

    sam (11/13/2008)


    Does the additional instance use its own IP and Network name?

    Yes, each instance has it's own cluster group with virtual ip address and name.

  • RE: How can I achieve this?

    In SQL 2005 I would go with Event Notifications for CREATE\ALTER\DROP Login. You could also use DDL triggers, but Event Notifications is more suited if you want to send a...

  • RE: MSSQL 2000 and 2005 COEXIST on CLUSTER??

    Yes you can have SQL 2000 and 2005 instances on one cluster as long as each of them is in it's own cluster group. I've done it a couple of...

Viewing 15 posts - 661 through 675 (of 1,655 total)