Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jsql12
  • Content: Threads
  • Order by date
  1. jsql12

    DTS FROM SQL Server 2000 to IBM DB2

    Hi all, I've set up a DTS to export a table from SQL Server 2000(SP3) to an IBM AS400 box that is running a DB2 database. The DTS uses an ODBC connection (ibm iseries for windows) to connect to DB2. The problem I'm having is the DTS runs very slowly. It takes about 20 sec to process 1000...
  2. jsql12

    Need Help Please with General Network Error!

    Hello, I get the following error when executing some stored procs in one of the client servers. [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionCheck ForData (CheckforData()) The stored procs actually reside on a different server, which I have registered in my EM. I can ping the...
  3. jsql12

    Does anybody know what this is?

    Hi all, I always see an entry in the error log like this: using 'xplog70.dll' version '2000.80.760' to execute extended stored procedure 'xp_cmdshell' Does anybody know what it is? what's the purpose? Thank you!
  4. jsql12

    Problem with an ActiveX in a DTS package!

    Hi all, I'm creating a DTS Package that only has a one step, which is an activeX script. It is supposed to remove any files with a .BKP extension. The script is as follows: call CleanFile("\\Server\F$\SQL_Backup\") sub CleanFile(folderspec) Dim fso Dim oFolder Dim oFile Dim f1 set fso =...
  5. jsql12

    How to query all the tables in sql server for a specific column?

    Hi all, is there a query that I can use to query all the tables in sql server 2005 for a specific column called status in which there's a value like '%out of state%'? Any help is greatly appreciated. Thanks
  6. jsql12

    How to make this query more efficient?

    Hi everybody, The following query is very costly in terms of IO: SELECT distinct m.memberID, [mem number] from members m left join discounts d on m.memberID = d.[id] I'd like to avoid using distinct. So, I'm thinking of using a subquery with where exists. So is there a way of rewriting the...
  7. jsql12

    How to get rid f this error, please help?

    When I run the following: SET NOCOUNT ON SET QUOTED_IDENTIFIER ON DECLARE @TableName VARCHAR (255) ,@SQLStr VARCHAR (255) ,@IndexName VARCHAR (255) ,@MaxLogicalFrag DECIMAL ,@MaxScanDensity DECIMAL SET @MaxLogicalFrag = 0 --0 is the best SET @MaxScanDensity = 100 --100 is...
  8. jsql12

    Rollback a delete or truncate statements.

    Hi there, I'd like to know how to rollback: 1- Delete from table 2- Truncate table Your help is greatly appreciated
  9. jsql12

    DTS

    Hi there, I have a table that is used in several dts packages and I'd like to know if there's a query that'll return a list of dts packages that use that table. I appreciate your help jsql12

Part and Inventory Search

Back
Top