Viewing 15 posts - 481 through 495 (of 1,222 total)
I would suggest that you do a little reading about both transactional and merge replication. Architecturally, they are very different ways do replicate data and you really should understand...
August 2, 2011 at 10:11 pm
Using T-SQL it is not so easy.
However, since you are planning to use SQL Agent, why not just use the step type of "SQL Server Analysis Services Command". You...
July 26, 2011 at 11:31 pm
That's exactly what I do.
The only other option I can think of involves restoring to a point in time prior to your delete - definitely more cumbersome...
July 11, 2011 at 10:27 pm
Not sure of the context. However, have a look at either FILTER or EXCEPT. They should be able to do what you need.
June 15, 2011 at 6:34 am
You are on the right track with the NOW() function. However, you will need to format the string to match the member name. Not sure what the answer...
June 13, 2011 at 11:33 pm
This is pretty straightforward - create a constraint, then right click the constraint and select "Edit".
Change the "Evaluation operation" to "Expression and constraint". Add your condition to the expression...
June 13, 2011 at 10:48 pm
Steve's reply is close.
Yes, once the each update has been applied to the subscriber, the record in the distribution database may be deleted. However, this is not done immediately....
June 9, 2011 at 6:34 am
There are many licensing options - you really need to know what your organisation has purchased.
In fact, without that, any advice you get (including this advice) does not really tell...
June 9, 2011 at 6:27 am
The client tools are...
SQL Server Business Intelligence Development Studio - this is used by AS developers to define dimensions, cubes etc
SQL Server Managment Studio - used to administer cube once...
June 8, 2011 at 10:00 pm
With Transaction Replication, the size of the distribution database is more closely related to the number of transactions against the publishing database than the size of the publishing database. ...
June 5, 2011 at 9:44 pm
2 things are wrong....
If you use the "END" statement, it must be paired up with a "BEGIN" statement. In you code, you don't need the END statement, so remove it.
The...
May 29, 2011 at 9:55 pm
With SQL 2005, you can get replication to do most of the work for you. To get this in place, the publication should be created with @replicate_ddl = 1....
May 22, 2011 at 11:03 pm
I suspect that your problem is happening because of some implicit type conversions.
The string 'insert into ' is not unicode, nor is @tablo or @dil. When you...
May 18, 2011 at 10:00 pm
You have missed a step - you need to add a subscription to the new article. Once that is done, the distribution agent becomes aware that it needs to...
May 16, 2011 at 10:51 pm
A database snapshot contains the data as it was when the snapshot was created. This applies to all things in the database including system objects. So, updating statistics...
April 18, 2011 at 9:47 pm
Viewing 15 posts - 481 through 495 (of 1,222 total)