Forum Replies Created

Viewing 15 posts - 46 through 60 (of 84 total)

  • RE: Replication Failed

    Karina

      Can you provide full details like ... what type of replication you are using and which agent gave you this error....

  • RE: corrupt dbo login account...

    Frances

    The prefix "dbo" (dbo.tablename) specifies the user who owns the table .

    whether it is a database owner or a user

     

    hope you got this...

  • RE: Moving Tables to other filegroups

    Thank you Uddin for the suggestion..

  • RE: cannot delete user login

    hi

      did you try out this one

    sp_dropuser 'username'

    after executing this try to add the user again..

     

    Thank You

    Shekhar

  • RE: shrinkdatabase taking looooong time

    You have transaction log and DB backups running daily..??

    try backing up them and shrink..

  • RE: Time held within Table

    Can u check the time zone setting in the operating system of the computer on which SQL Server is running...

    this could help you

     

    Thank You

    Shekhar

  • RE: dbowner permission on database

    No,

    Only the members of the sysadmin fixed server role can add users to a database...

     

    Thank You

    Shekhar

  • RE: TempDB

    and use the below script to move tempdb to other drives

    alter database tempdb modify file

         (name='tempdev',filename= 'E:\MSSQL\data\TempDB\tempdb_data.mdf')

    alter database tempdb modify file

         (name='templog',filename= 'C:\MSSQL\data\TempDB\tempdb_log.ldf')

    This requires server restart to take...

  • RE: Inserting into Remote Database

    Thanx jeff & mengus

    the problem was with the IDENTITY property on JOB_ID column...

     

    thank you

    Shekhar

  • RE: Inserting into Remote Database

    I have created a linked server with following credentials...

    the following is the output from sp_helpLinkedSrvLogin

     

    Linked server, Local Login, Is Self Mapping, Remote Login

    MUS               ,    sa           ,       0                 , sa

    i...

  • RE: Transactional Replication - Snapshot Failing

    have u restored both Publisher and subscriber databases???

    that might cause problem to start the transactional replication..

    instead u restore only publisher database and create empty subscriber and then start off with...

  • RE: Link Server doesn''''t work except through query analyzer: MSSQL freezing / timing out

    check the security option which u have choosen

    try using the last option

    "be made using this security context"

    and specify the remote login and password...

  • RE: Replacing table name with a variable in SP

    Use Execute function which evaluates the string to an SQL query

    build a string fot the insert query and pass it to Execute fubnction

    ex:

    replace ur insert query with the following ..

    Execute('insert into'+  @filename1+'...

  • RE: Which Table?

    Use this

    For ex:..if u have got RID from trace

    RID: 7:1:35443:0

    DBCC PAGE ({db_id|dbname}, pagenum [,print option] [,cache] [,logical])

    where:

    db_id|dbname - Enter either the dbid or the name of...

  • RE: Rebuild Index over large table

    Every five minutes, DBCC INDEXDEFRAG will report to the user an estimated percentage completed. DBCC INDEXDEFRAG can be terminated at any point in the process, and any completed work is...

Viewing 15 posts - 46 through 60 (of 84 total)