Viewing 15 posts - 7,171 through 7,185 (of 7,190 total)
Scott
Also, if they're domain admins, they'll be able to see the SQL error logs (errorlog, errorlog.1 etc) as text files, without using Enterprise Manager.
John
March 16, 2006 at 7:05 am
KR
Do you have any filters defined in your publication that may cause certain rows not to be copied? I suppose this is unlikely to be the reason if one subscriber...
March 16, 2006 at 4:59 am
OK, I see from your thread on SQL-Server-Performance that your problem is that only the first row of the result set is displayed in your app. If you say what...
March 15, 2006 at 10:38 am
Carol
Check out this recent thread:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=263625
It seems to suggest that you're right.
John
March 15, 2006 at 10:23 am
... or, even better:
SELECT COALESCE(address2, address1)
FROM tablename
March 15, 2006 at 9:46 am
Haven't tested this, but try:
SELECT 'Address' =
CASE WHEN address2 IS NULL
THEN address1
ELSE address2
END
FROM tablename
John
March 15, 2006 at 9:42 am
Charles
Add the /3GB to the boot.ini file on both cluster nodes. This will allow SQL Server (and any other applications) to grab 3GB while reserving only 1GB for the OS. ...
March 15, 2006 at 9:29 am
Ryan
I suppose it depends how much of your read/write is write. Transaction logs are written to sequentially so if you have a fair amount of write activity then you should...
March 14, 2006 at 8:34 am
John
You can have two default instances if you have two virtual servers on your cluster. Or at least I imagine you can...
John
November 15, 2005 at 1:32 am
Thanks, folks. I had the extra rules put on the firewall and now it works as it should.
John
October 28, 2005 at 2:08 am
Hilary
Thanks. On the subscriber, the %computername% and @@servername information were identical. On the publisher they were identical except that @@servername had \instancename on the end.
I created the aliases...
October 21, 2005 at 3:29 am
Yes, you can replicate between default instances. We have set up transactional replication with no problems on default instances.
John
October 20, 2005 at 4:13 am
Yes! It does say that. But why is that table being truncated successfully in one subscription but not in the other?
I do want the data deleted from the table, but I...
September 14, 2005 at 6:58 am
I am using transactional replication, but obviously this starts off with teh snapshot being applied. Yes, I created the table on the subscriber using the exact same DDL as on...
September 14, 2005 at 3:05 am
Hilary
Thanks, but my publication uses concurrent snapshot processing, and when I try to subscribe to just one article, I get a message saying I have to specify all articles. Is...
September 6, 2005 at 4:57 am
Viewing 15 posts - 7,171 through 7,185 (of 7,190 total)