Viewing 15 posts - 2,476 through 2,490 (of 2,900 total)
You can't backup the database and tlogs at the same time. Your T-log backup will fail. It's pointless to try anyway, because your full backup is backing up everything. Run...
October 9, 2006 at 8:59 am
I did this with good results when I needed to change the length of a field in a replicated table. -- Specifically: Drop a table from...
October 9, 2006 at 8:55 am
There's also the syssubscriptions table in the publication database that references the subscription database name. Trying to change things this way sounds frought with problems. i think you'd be better...
October 9, 2006 at 8:52 am
You want to replicate from ServerA to ServerB, and from PROD_DB to TEST_DB ... (databases with different names) ?? Sure. I don't have any databases with the same name.
September 29, 2006 at 9:54 am
I found the problem. The user's Windows account needed to be in the Distributed COM Users group on the server.
September 29, 2006 at 9:37 am
Thanks ... I probably should have given some more information to narrow it down. Another developer has "sysadmin" rights, and he doesn't have any problem. Neither do I, also sysadmin....
September 28, 2006 at 9:04 am
I tried a few with the wizard and they succeeded. But I can't figure out how to edit them. How do you open the damn things ? I connect to...
September 26, 2006 at 7:38 am
I use different maint plans for backups & trans logs without a problem. If the log backup tries to run while the full backup is running, it will fail, but...
September 19, 2006 at 6:49 am
If all else fails, perhaps you could install it as a different instance.
September 18, 2006 at 11:02 am
Here's my version:
CREATE TABLE [dbo].TableSchema(
[table_name] [sysname] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[column_order] [smallint] NULL,
[column_name] [sysname] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[column_datatype] [sysname] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
September 6, 2006 at 6:45 am
Our Financial package, Lawson, required that collation for their database. All our other databases use the "normal" collation. We have a few situations where we join tables between Lawson and...
September 5, 2006 at 7:29 pm
Without knowing the details, it sounds like DTS should do the job.
September 5, 2006 at 5:38 pm
In either 2000 or 2005, you can have SQL generate the change script for you, then cut & paste it to run against your other tables. That's what we do....
September 5, 2006 at 5:30 pm
There are also different collations within English. For example, most of our databases use a collation that is case INSENSITIVE, but one of our databases requires a collation that is...
September 5, 2006 at 4:33 pm
Viewing 15 posts - 2,476 through 2,490 (of 2,900 total)