Forum Replies Created

Viewing 12 posts - 451 through 463 (of 463 total)

  • RE: Procedure to add back User Mapping

    Hi,

    If a login account is mapped to a 'database' user account then it in turn means that you are giving authority to that login to access the database. I...

    ---------------------------------------------------------------------------------

  • RE: How toenable identity insert in a dabase level

    hi,

    SELECT object_name(id),name, COLUMNPROPERTY(id,name, 'IsIdNotForRepl') as I_INSERT

    FROM syscolumns WHERE status = 0x80

    If the I_Insert is 1 then Identity_Insert is not checked.

    Prakash.

    ---------------------------------------------------------------------------------

  • RE: How toenable identity insert in a dabase level

    Hi,

    I think u can use this query as well to find out the identity column.

    SELECT object_name(id), name

    FROM syscolumns WHERE status = 0x80

    Regards,

    Prakash.P

    ---------------------------------------------------------------------------------

  • RE: Linked Server error in SQL2005 sp2

    Hi,

    What is the edition of the SQL server you are using?

    ---------------------------------------------------------------------------------

  • RE: Linked Server error in SQL2005 sp2

    Hi,

    Nothing has really changed in SQL server 2005 related to the linked server. It must be a straightforward one.

    Yeah you can send me a mail to this account prakash.padmanabha@gmail.com

    Regards,

    Prakash.P

    ---------------------------------------------------------------------------------

  • RE: Linked Server error in SQL2005 sp2

    Hi

    Since the table is there in the dbo schema, the login with which you are accessing the table remotely (remote login, password) should have access to dbo schema objects. Try...

    ---------------------------------------------------------------------------------

  • RE: Linked Server error in SQL2005 sp2

    Hi,

    Check what is the schema of the table you are trying to access on the remote server. Lets say if I am using one SQL account and is not...

    ---------------------------------------------------------------------------------

  • RE: Linked Server error in SQL2005 sp2

    Hi,

    RPC will be there in the settings page (values will be true or false) . But I think this is not going to solve your problem as this is...

    ---------------------------------------------------------------------------------

  • RE: xp_sendmail procedure

    Hi,

    xp_smtp_sendmail was an extended stored procedure which was sending the mails using an external component. Now that SQL server 2005 has its own components for sending the mails,...

    ---------------------------------------------------------------------------------

  • RE: Linked Server error in SQL2005 sp2

    Hi,

    I am not sure if we can use sa account for linked server. I've recently configured a linked server by using a SQL account(login). We would have to provide...

    ---------------------------------------------------------------------------------

  • RE: How to Get Instance Name from T-SQL

    Hey,

    I am not sure if this is what you were looking for... but I can run this query to see the current server and all the linked servers on...

    ---------------------------------------------------------------------------------

  • RE: Return Query Text Along With sp_who2 Using Dynamic Management Views

    Hi,

    I got this error too as the database compatibility level was set to 80 and I think for this table valued function to work the compatibilty level has to...

    ---------------------------------------------------------------------------------

Viewing 12 posts - 451 through 463 (of 463 total)