I need to change the collation sequence of a SQL GP instance from case sensitive to case insensitive. When I take the output of the CopyOut script
/* Script to create bcp commands to export data for all tables. */
SET QUOTED_IDENTIFIER OFF
select 'bcp "TWO..' + name + '" out ' + name + '.out -e ' + name + '.err -c -b 1000 -U sa -P password -t "|" -S SERVERNAME -r "#EOR#\n"'
from sysobjects where type = 'U' order by name
it creates these bcp commands:
bcp "TWO..MSreplication_options" out MSreplication_options.out -e MSreplication_options.err -c -b 1000 -U sa -P Password99 -t "|" -S HHHN -r "#EOR#\n"
bcp "TWO..spt_fallback_db" out spt_fallback_db.out -e spt_fallback_db.err -c -b 1000 -U sa -P Password99 -t "|" -S HHHN -r "#EOR#\n"
bcp "TWO..spt_fallback_dev" out spt_fallback_dev.out -e spt_fallback_dev.err -c -b 1000 -U sa -P Password99 -t "|" -S HHHN -r "#EOR#\n"
bcp "TWO..spt_fallback_usg" out spt_fallback_usg.out -e spt_fallback_usg.err -c -b 1000 -U sa -P Password99 -t "|" -S HHHN -r "#EOR#\n"
bcp "TWO..spt_monitor" out spt_monitor.out -e spt_monitor.err -c -b 1000 -U sa -P Password99 -t "|" -S HHHN -r "#EOR#\n"
bcp "TWO..spt_values" out spt_values.out -e spt_values.err -c -b 1000 -U sa -P Password99 -t "|" -S HHHN -r "#EOR#\n"
When I run these bcp commands I get invalid object name on MSreplication_options, spt_fallback_db, etc. I have tried looking for these objects in the TWo database and I cannot find them. I am thinking it is the case of the text that is wrong. Can anyone tell me where I would find these objects?
*This post is locked for comments