Viewing 15 posts - 2,101 through 2,115 (of 5,103 total)
Just use a separate DB on the publisher to collect the merged data.
Cheers,
February 1, 2007 at 9:48 am
Large updates *do* have impact on replication. The reason is that whatever goes into your transaction log gets stored in the distribution database (for the retention period). 10 000 rows...
February 1, 2007 at 9:47 am
Totally agree with my friend Ed. An in-place upgrade is a risky business. I have been through this "upgrades" many times my advice is that you should do it as...
February 1, 2007 at 9:37 am
To take advantage of partitioning there are several requisites. Look at partitioned Views in BOL. In particular the primary key must define a check constraint so that the engine can...
January 31, 2007 at 7:24 pm
First When you use INSERT/SELECT you should especify the colum list on the insert table and on the select too.
That way you know exactly what goes where.
Secondly your source procedure...
January 31, 2007 at 7:14 pm
I guess its better late than never!!!
Congratulations and Thank you very much for your support.
January 31, 2007 at 7:07 pm
This sort of application as well as the encryption one do make a lot of sense in mobile devices. In there you need to minimize space and maximize security.
That...
January 31, 2007 at 10:58 am
I have to agree with colin here. This is one of those "dangerous" articles that could mislead people. You need to think really twice before using (NOLOCK) I would add...
January 24, 2007 at 8:36 am
sure just replace the comma "," for " + CHAR(13) " and you will be fine.
Mind you there is a limit of 8000 characters for the operation.
good luck.
January 24, 2007 at 8:23 am
This is a "WORKING" example... do your thing and Enjoy!
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[proc1]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[proc1]
GO
if exists (select * from...
January 24, 2007 at 8:17 am
dbachmann,
When replication is installed *many* of the database security roles that used to work are effectively broken. The reason is that M$ is hardcoding those permissions on the replication stored...
January 19, 2007 at 1:58 pm
Allow me to differ:
This is a sample from BOL:
USE pubs
SELECT royalty, SUM(advance) 'total advance',
GROUPING(royalty) 'grp'
FROM titles
GROUP BY royalty WITH ROLLUP
Cheers,
January 9, 2007 at 3:52 pm
You can't truncate the Log of a database in simple recovery mode ![]()
You can run CHECKPOINT though to get the expected effect immediately
January 9, 2007 at 3:45 pm
Database Partitioning is *not* a primary performance feature. It is mostly a maintainablility one.
I have "several" instances in which that was the case. On SP2, M$ is saying that...
January 9, 2007 at 3:42 pm
Hehe ... I was biten by that too ![]()
January 9, 2007 at 3:33 pm
Viewing 15 posts - 2,101 through 2,115 (of 5,103 total)