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 IamaSherpa 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: *

  1. pdalberth

    mdac 2.6 performance problems

    We have upgraded from SQL Server 7.0 to 2000. Our application that was running on mdac 2.5 is now running slower on mdac 2.6. Since SQL Server 2000 installs mdac 2.6 as part of its installation, we are forced to use mdac 2.6. Now all our executables run 50 % slower on mdac 2.6 than the ones that...
  2. pdalberth

    MDAC 2.6 slow compared to 2.5?

    We have upgraded from SQL Server 7.0 to 2000. The SQL 2000 install includes mdac 2.6. We use OLEDB for database connectivity and have observed that our executables run 50% (!) slower on mdac 2.6 than on mdac 2.5. Has anyone else noticed this and come across any solution? Can we use MDAC...
  3. pdalberth

    Does SQL Server have Resource Quotas?

    Is there a way to implement resource (disk, memory, elapsed cpu time) quotas on a per account basis in SQL Server 7 or SQL 2000? For example, can I protect my production environment from a poorly written query by configuring SQL Server to terminate any query that runs for more than 10...
  4. pdalberth

    SQL 7 and Win 2K Supported by Microsoft?

    I've read accounts here and in other forums from folks who are running SQL 7 under Windows 2000 Server. I haven't read of any problems, but does Microsoft support this configuration? We would be running SQL 7 standard on Windows 2000 Advanced Server. Thanks in advance.
  5. pdalberth

    Lots of Rollback!

    I am populating an existing but empty table using an insert into (target table name) select * from (source table name). The source table contains about 106 MB of data. The transaction has been running for several hours and has generated more than 400 MB of rollback. Is this expected behavior...
  6. pdalberth

    How to move SQL 2000 db back to SQL 7

    We have some SQL Server 2000 databases (5 databases totalling about 7 GBs) that we want to return to version 7. The detach/attach method of moving databases will not work as SQL 7 will not attach the SQL 2000 files. Similarly, I can't restore in the SQL 7 environment a backup made in the SQL...
  7. pdalberth

    Granting permissions to a DTS package?

    We have some DTS packages that need to be modified by multiple database users but it seems that only the owner can modify them. I have tried giving the appropriate users more privileges on msdb but this did not work. What's the best way to allow multiple users to modify DTS packages without...
  8. pdalberth

    Which network library performs best?

    Given that there is a choice between using TCP/IP or named pipes to connect to SQL Server, which is the better choice in terms of performance? When using TCP/IP, does using a server name (which then must resolve through DNS) instead of an IP address degrade performance noticeably? Thanks in...
  9. pdalberth

    How to tell if RI constraints are enabled

    Is there a way to query the data dictionary in SQL 7 to see if referential integrity constraints are enabled for insert/update/delete? I know how to do this in EM but haven't been able to find even an information_schema view that contains this information. Thanks in advance for any help.
  10. pdalberth

    Can restore if primary file group gone but have transaction log?

    We have lost the primary file group (the .mdf file) of a single file group database but we have the original transaction log, as it stood at the time the primary file got clobbered, in its entirety. We have a complete backup of the entire database from about a week ago. I know I can restore...
  11. pdalberth

    How do I change the owner of a DTS package?

    It turns out that what I found what I need in the undocumented stored procedure sp_reassign_dtspackageowner. Thanks for your help. - pd
  12. pdalberth

    How do I change the owner of a DTS package?

    Hi Robert, Thanks for your response. The files were imported from one server's msdb database to the current server's msdb database. The packages are stored in native DTS format in the msdb database. - Paul
  13. pdalberth

    How do I change the owner of a DTS package?

    I have some DTS packages that were imported from another server. I need to change the owner - sp_changeobjectowner does not work for DTS packages. Alternatively, I could grant the privilege to modify the packages in question to other users. I can't figure out how to do this, either. BOL...

Part and Inventory Search

Back
Top