Forum Replies Created

Viewing 15 posts - 2,221 through 2,235 (of 2,636 total)

  • RE: Concatenate string in DTS package

    Dan,

    You could import into a "staging" table with separate name columns, then concatenate as you move the data from there to your "real" table.

    Greg

  • RE: Problem using dts with large file

    Francois,

    Please post the error message you're getting and the format of your source file, and which DTS task you're using to import the data.

    Thanks,

    Greg

  • RE: Get data from table in old database and insert it into table in new database

    Rob,

    Try this:

    insert into new_table

    select * from old_table

    where not exists(select * from new_table

                           where new_table.clinickey = old_table.clinickey

                              and new_table.providerkey = old_table.providerkey

                              and new_table.phonecalltypekey =  

                                    old_table.phonecalltypekey)

    providing the 3 columns make up...

  • RE: error Msg 2511 in sql server

    You probably have a corrupt index in the database.  Drop and recreate the indexes to fix.

    Greg

  • RE: Easy Task or Not? If so, how?

    Sorry, that's what I was trying to get at.  I don't work with Access databases a lot and I've never password protected one.  I'm glad you figured it out.

    Greg

  • RE: Partial Restore

    Sharon,

    To prevent views from being imported as tables, you should use "copy objects and data between SQL servers" instead of the option "Copy table(s) and View(s) from source database" in...

  • RE: Getting data from another SQL Server

    In addition to creating a linked server connection, use OPENQUERY in your stored procedure to send a pass-thru query to the remote database.  See "Distributed Queries" in Books OnLine.

    Greg

  • RE: Partial Restore

    Sharon,

    Remi's suggestion is good.  You could also use DTS to transfer objects between SQL Server databases and choose just the objects you want to put into your test database.

    Greg

     

  • RE: What''''s up with table dependencies??? Insert Statement Conflict with Table Foreign Key Constraint

    I don't think this forum software has that option.  You could post it in the suggestions forum.

    Greg

  • RE: What''''s up with table dependencies??? Insert Statement Conflict with Table Foreign Key Constraint

    What you do is run a script in Query Analyzer to generate ALTER TABLE DROP CONSTRAINT and ALTER TABLE ADD CONTRAINT statements for the foreign keys.  Copy the statements into Execute SQL...

  • RE: Easy Task or Not? If so, how?

    Jacob,

    I usually ignore the login and password for Access unless the Access database has had login enabled for a workgroup.

    As for mapping differently named columns between an Access table and...

  • RE: Public role rights

    Are you certain that the developer is not a member of any other database role that may have DELETE permission?

    Greg

  • RE: Full-Text Search

    How about SP_HELP_FULLTEXT_TABLES?

    Greg

  • RE: How does everyone backup?

    Our setup isn't anything like yours, so I don't know if you can glean anything useful from it. 

    We do twice weekly full database backups, daily differential backups, and hourly...

  • RE: DTS COpiesw

    IMHO, the easiest way to move packages is to open them in DTS Designer on the source server and "save as" to the destination server.

    Greg

Viewing 15 posts - 2,221 through 2,235 (of 2,636 total)