Forum Replies Created

Viewing 15 posts - 2,611 through 2,625 (of 2,635 total)

  • RE: Rebuild fk constraints?

    Run this script and save the results before you run the 'drop' script.

    select 'ALTER TABLE ' + cast(t.name as char(30)) + 'ADD CONSTRAINT '

    ...

  • RE: Rebuild fk constraints?

    How about this?

    select 'ALTER TABLE ' + cast(table_name as char(30)) + 'DROP CONSTRAINT '

    + cast(constraint_name as char(50)) + char(13) + 'go' +...

  • RE: DTS - copy incremental data

    You should either use a Data Driven Query task with an insert query or an Execute SQL task with an insert query.

    The insert query should look something like,

    /*Insert...

  • RE: DTS Failure (fk constraint)

    You'll need to add an Execute SQL Task to your DTS package that disables or drops the FK constraints i.e. ALTER TABLE with CHECK/NOCHECK CONSTRAINT. Here's a script to...

  • RE: Migrating from Access to SQL

    Do you want to use the VB front end and eliminate Access altogether (sounds like option #3)? If so, I recommend using DTS to move the database from Access...

  • RE: Wrong QOD 16-12-2003

    Once again, the typo (articleid) in the email is corrected (article_id) on the web page. This has happened enough times that I always go to the web page to...

  • RE: Any way to restore an Oracle backup into SQL2K?

    Oh man, I feel for you. Some of my longest days have been spent trying to configure Oracle.

    Hope the book helps!

  • RE: SQL Server Logs

    sp_cycle_errorlog will close the current error log and open a new one without restarting SQL Server. See "sp_cycle_errorlog" in BOL.

    Greg

  • RE: Any way to restore an Oracle backup into SQL2K?

    I don't know of any utility that can translate the export file into SQL Server. As far as I know, an export file can only be read by the...

  • RE: QOD 12/10/2003

    Syslogins is a view in the Master database that selects from sysxlogins table. Curiously, BOL refers to syslogins as a system table.

  • RE: Working with MSSQL and Oracle

    Yeah, the online courses should get you started. Some good books to consider are "Oracle DBA Survival Guide" (SAMS), "Oracle DBA Handbook" (Oracle Press), and "Oracle Backup & Recovery...

  • RE: SQL Server 2000 and not 7

    We've never had a problem restoring a MSSQL7 backup to a MSSQL2K database. It's one of the supported methods for upgrading from v7.0 to v2000. See Knowledge Base...

  • RE: Working with MSSQL and Oracle

    I started working with SQL Server after being an Oracle DBA for a couple of years. My Oracle responsibilities have declined over the past 3 years as our databases...

  • RE: Troubleshooting DTS errors

    Have you enabled logging to msdb in the package? That's always allowed me to view details of a package error.

  • RE: Design A Database Using an Entity-Relationship Diagram

    Check Visible Analyst from Visible Systems.

    http://www.visible.com/

Viewing 15 posts - 2,611 through 2,625 (of 2,635 total)