Forum Replies Created

Viewing 15 posts - 856 through 870 (of 2,488 total)

  • RE: Help Needed

    Now why would you be using IPX/SPX ??

    There is a knowledgebase article on this the 7391 error. I don't have the time to hunt it down at the moment,...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Change Date format in DTS

    How about using the built-in Datetime transformation task ??

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Installing OSQL

    No license is required as long as you connect to a licensed version of SQL Server.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Help Needed

    Open Query Analyzer on your machine, or the local server, and you should get a dialog prompting you for connection details. Put in the exact same details you are using when...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Help Needed

    Have you tried logging in to the remote server using Query Analyzer? Maybe the username and/or password are different on the remote server.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Help Needed

    Are both servers running mixed mode authentication?

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Help Needed

    For the "made using this security context" option, did you use an SQL Login that has be defined on the remote server?

    You can setup a linked server easier using T-SQL...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Help Needed

    When defining the linked server what options/entries have you put on the Security tab?

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Help Needed

    "i have enabled mixed mode authentication.even then its not displaying the intended result."

    So does this mean you can connect to the linked server and get results, but your query is...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Problem with Index speed when moving records

    So is this for the insert/select part, the delete, or the whole lot?

    When you remove the records from the table, SQL removes the entries from the index as well, so...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Reindexing all tables ... am I missing something (likely ...)

    The main thing I hate about sqlmaint is it's all or nothing approach.

    Generally, what I would be doing is checking for fragmentation first using DBCC SHOWCONTIG. Then just reindex, or...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How to Export DTS Package?

    Many ways to achieve this, try each and pick one that suits your need best. Also, be aware that depending on how you've designed your package you may need to...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Inserting results from SP execution to a table.

    When you execute,

    exec master.dbo.sp_msforeachdb 
    "USE [?] 
    BEGIN
    SELECT '?'
    EXEC sp_helprolemember 
    END" 

    by itself in Query Analyzer you will see that seperate resultsets are returned. You can't insert seperate resultsets...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Distributed Query error 7391

    Try these,

    http://support.microsoft.com/default.aspx?scid=kb;en-us;873160

    http://support.microsoft.com/default.aspx?scid=kb;en-us;329332

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Calculate the last working day of the previous month

    How about this to show the last weekday in the month ?? The important bit is the first line.

    SET DATEFIRST 1
    DECLARE @MyDate datetime
    -- example 1 with end...

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 856 through 870 (of 2,488 total)