Viewing 15 posts - 286 through 300 (of 352 total)
No can do. The obvious enhancement would be to alter the column to DECIMAL (10,4) or greater. BUT this has ripple effects downstream to additional receiving columns also defined as...
August 2, 2006 at 9:35 am
It's the 1st Task. I mirror'd a solution I found on this forum:
http://www.sqlservercentral.com/columnists/tdavid/moreportabledtspackages.asp
My pkg runs DynPropTask #1 1st -- issuing a SELECT SERVERPROPERTY('SERVERNAME')
It runs fine on my QA Server. When I...
June 5, 2006 at 8:30 am
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
Viewing 15 posts - 286 through 300 (of 352 total)