Forum Replies Created

Viewing 15 posts - 1,426 through 1,440 (of 2,387 total)

  • RE: Joining a text file with a table in a query

    Create linked server to Text file as example below.

    exec sp_addlinkedserver

    @server = 'Documents',

    @provider = 'Microsoft.Jet.OLEDB.4.0',

    @srvproduct = 'OLE DB Provider for Jet (Text IISAM)',

    @datasrc = 'c:\temp\',

    @provstr =...

  • RE: Remote login and password in linked servers

    You should know the login created in old linked server. That is the login for you connect to the remote server. You can review the the login's database access and...

  • RE: Resize data file

    First to run sp_spaceused @updateusage = true to find out spaces used by your database and sp_helpfile to get how large your MDF and LDF are. Then shrink them with...

  • RE: Remote SP Failure

    I tested with pubs database without any problems. Can you try pubs database too?

  • RE: Remote SP Failure

    It seems you are activating a sp that starts a job to restore the database in remote server. Is it? If not, can you describe more details about the whole...

  • RE: Who is doing that?

    quote:


    Like counter logs, in Performance snap in? I wonder how can this help...

    This time I just seen it in System monitor,...

  • RE: Who is doing that?

    Do you have any performance log for last 10 minutes? Or have any performance monitor application (for example, BMC) running against this server?

  • RE: Remote SP Failure

    Do you have ideas how long the restoration will take? Any error messages in SQL Server errorlog? Can you post the restoration statement?

  • RE: Remote SP Failure

    How do you map local login in serverA to remote login in ServerB? Try to set the default database for remote login is 'master'.

  • RE: Large data delete causes slow performance

    Can you check whether dynamic queries use correct indexes to find records that need to be deleted? Do you delete them in a single batch or split the deletion into...

  • RE: Remote Backup

    1. Create a share directory in TDA and allow SQL Server service account in PDA to be able to write to it.

    2. Backup database pubs to disk = '\\TDAMachinename\ShareName\pubs_20030722.bak'. For...

  • RE: Table Changes Don't Take

    Public Role does not have update permission to all tables by default unless you grant it the permission. Create a new Role with proper permissions to select/update your particular tables...

  • RE: Failed restore

    quote:


    since all log backups are appended to the same file, this file is constantly growing. Even after full or differential backups it...

  • RE: Linked Servers and Active/Passive Cluster

    I mean register your virtual SQL Server in EM in both nodes.

  • RE: SQL Agent remote login problem

    quote:


    Msg 18456, Sev 14: Login failed for user '\'. [SQLSTATE 28000]


    Who is the...

Viewing 15 posts - 1,426 through 1,440 (of 2,387 total)