Viewing 15 posts - 286 through 300 (of 349 total)
answer is yes
June 1, 2006 at 7:16 am
thx --exactly what I was looking for!
May 26, 2006 at 11:29 am
I wound up adding entries into my local HOSTS file (IP Addresses and matching Server Names). I can now Launch Replication Monitor and "Add Publishers" !!
May 16, 2006 at 2:08 pm
Turns out, the DBA before me incorrectly setup the @filter statements.. They should only contain 4 parameters. Problem Resolved.
May 15, 2006 at 12:45 pm
I found this XREF List: http://www.transactsql.com/html/sp_trace_setfilter.html
May 12, 2006 at 9:34 am
Problem resolved. Exact sequence of events:
-- Installed 2000 SP4 only & bounced my desktop (problem persisted)
-- re-Installed SQL 2000 STD edition w/ explicit INSTANCE name & bounced my desktop (problem persisted)
-- Installed 2004...
May 5, 2006 at 10:25 am
thx Yelena -- much appreciated!
May 2, 2006 at 2:35 pm
Here is the SQL (renders table sizes):
--Declare/Open/Fetch/Close/Deallocate CURSOR sample
declare @UserTableName nvarchar(40)
declare UserTableSize cursor for
select rtrim(name) from dbo.sysobjects
where OBJECTPROPERTY(id, N'IsUserTable') = 1 order by name
open UserTableSize
fetch next from UserTableSize...
May 2, 2006 at 9:18 am
Larry - I need to reinitialize 1 article (of 9) in a single Transactional/PUSH subscription. You mentioned that you've accomplished this. Would you be willing to share this knowledge? (this...
April 25, 2006 at 7:45 am
My alter ego found this:
DBCC TRACESTATUS
You can use DBCC TRACESTATUS command to get the status information for a particular trace flag(s) currently turned on. This is the syntax from...
April 21, 2006 at 8:58 am
CREATE TRIGGER [trgu_TABLE_A] ON [dbo].[TABLE_A] AFTER UPDATE, INSERT
AS
BEGIN
UPDATE TABLE_A SET ChangeDate = GETDATE()
FROM inserted i INNER JOIN TABLE_A c ON i.ID = c.ID
END
April 20, 2006 at 7:48 am
I believe this is an authorization problem. I am able to "Add Publishers" where I'm Local Admin.
Please disregard.
April 10, 2006 at 2:08 pm
I've resolved this by adding an additional step to our "Log Reader Agent" jobs. After creating the usp_send_cdosysmail stored proc in Master (<--- search the net for this one), I...
April 10, 2006 at 9:31 am
thx for the reply. Unfortunately, the solution is not returning the "table name" -- ONLY the rowcounts. Is there a way to modify this statement to return the "table name"...
April 6, 2006 at 9:24 am
My alter ego pulled this together:
This Statement returns the last DAY of the prior QTR with TIME = 00:00:00.000
SELECT
CONVERT(DATETIME,
March 22, 2006 at 11:37 am
Viewing 15 posts - 286 through 300 (of 349 total)