Viewing 15 posts - 1,081 through 1,095 (of 1,536 total)
Are there any post snapshot scripts associated with the snapshot for that publication?
June 15, 2004 at 6:10 am
Scripting replication is a very simple process. Just drill down to the publication in EM, then right click and select "Generate SQL Script", this will then allow you to create...
June 15, 2004 at 4:57 am
I wouldn't recommend using a defrag on datafiles. You won't be able to without stopping SQL anyhow.
An option to resolve the fragmentation level disk wise on the files would be...
June 14, 2004 at 12:52 pm
We run it on all non db related drives. Whether it makes a difference or not I am dubious about, I've not seen any definitive stats to show me that. Bearing...
June 14, 2004 at 12:02 pm
You'll have to drop the subscription and the publication, make the change to the table, recreate the publication and subscription and resnapshot.
Best way to do this is script out the...
June 14, 2004 at 10:49 am
You could change the IUSR account to a normal account.
June 14, 2004 at 8:21 am
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
CREATE procedure bcc_sp_inspection_result_codes
as
select...
June 14, 2004 at 8:20 am
Check out sp_helprotect in BOL. I use this within a dts to pull all permissions on a nightly basis into a table along with the current date. I have another...
June 14, 2004 at 8:12 am
You would change USER ID = and PASSWORD = to Intergrated Security = SSPI
June 14, 2004 at 8:07 am
create table #test (tablename varchar(100), count int)
insert into #test exec SP_MSFOREACHTABLE "select '?', count(*) from ?"
select * from #test
--drop table #test
June 14, 2004 at 5:27 am
How about creating a temp table, insert into the temp table a count of the number of rows on the DB2 db and if that count is more than 0...
June 11, 2004 at 12:09 pm
This would do it. It runs a select for those contactids in the clientcontacts table that are not in the select of the contactids that have a matching contactid in...
June 11, 2004 at 11:09 am
2 ways I know of (there may be more).....
Use a Dynamic Properties task to set the value (you can use a query, ini file etc)
or
Use a stored proc and pass...
June 11, 2004 at 11:05 am
Make the first step a datapump into a #temp table on SQL.
Second Step:
DECLARE @THECOUNT INT
SELECT @THECOUNT = COUNT(*) FROM #TEMPTABLE
IF @THECOUNT = 0
BEGIN
RAISERROR ('NO DB2 DATA', 16, 1)
END
Then run...
June 11, 2004 at 11:02 am
Viewing 15 posts - 1,081 through 1,095 (of 1,536 total)