Forum Replies Created

Viewing 15 posts - 2,401 through 2,415 (of 2,636 total)

  • RE: Importing Access 2000 into SQL 7.0

    James,

    The import package may be failing when scheduled because the login used by SQL Server Agent doesn't have access to the Access 2000 database location. 

    Keep in mind that when...

  • RE: tempdb autogrow issue

    When tempdb is recreated at startup, it uses size and growth specified for the model database.  To fix, set the model autogrow parameter to 10% before the next reboot. 

    Greg

     

  • RE: SQL Question

    Or this:

    select t1.UserId from Mytable t1 join Mytable t2

    on t1.UserId = t2.UserId

    where t1.ItemId = 'AA' and t2.ItemId = 'BB'

  • RE: Phone Interview Questions

    I'll second Kat's remark about working for a government agency.  We've able to purchase pretty much any books we can justify to fill the gaps between formal training classes.

    Greg

     

  • RE: Upgrading from SQL Server 2000 Developer to Enterprise Version

    RTM is usually referred to as "Release to Manufacturing".  It's the initial production release of a software product.

    Greg

  • RE: Upgrading from SQL Server 2000 Developer to Enterprise Version

    Backing up and retoring will work, as will detaching and attaching the databases.  Any article about migrating databases between instances of SQL 2000 will contain instructions for it. 

    One suggestion:...

  • RE: Version control of Stored Procedures and Views

    We use MS Visual Sourcesafe for version control of stored procedures.  We don't keep back versions of views.

    Greg

  • RE: Moving DTS Jobs

    Michael,

    I use DTS to move packages directly from msdb.sysdtspackages on one server to the same table on another server.  I took the instructions at http://www.sqldts.com/default.aspx?204  and added a Dynamic Properties...

  • RE: Moving DTS Packages Between Servers

    Clive,

    I use DTS to move packages directly from msdb.sysdtspackages on one server to the same table on another server.  I took the instructions at http://www.sqldts.com/default.aspx?204 and added a Dynamic Properties...

  • RE: DTS and "Flags"

    Sam,

    I'm not clear about what you want to do in DTS.  If you're doing database backups, you can use SQL Server backup commands and put them in scheduled jobs.  Maybe...

  • RE: Question of the Day for 05 Jan 2005

    I agree with Yelena.  DBO is not a login.  When I execute sp_changedbowner ‘dbo’ , I get the error "The login 'dbo' does not exist." 

    I don't...

  • RE: reading transaction logs

    Actually Steve, Log Explorer can read transactions that were committed to t-logs before Log explorer was installed.  It can even read log backup files.

    Jolyn, you could try using DBCC LOG...

  • RE: HELP: DTS Package Execution Error

    I just noticed that you got pretty much the same suggestion in your thread in the Administration forum. 

    For future reference, you might try posting DTS questions in the DTS...

  • RE: HELP: DTS Package Execution Error

    Is your error message being generated by the DTS package?  If so, it's probably because when you execute it from Entrerprise Manager, it's executing on you workstation and when you...

  • RE: Import/Export Security

    By default, anyone can run the import/export wizard or create a DTS package, but they have to have permission to insert into the destination tables to make it work import and...

Viewing 15 posts - 2,401 through 2,415 (of 2,636 total)