Viewing 7 posts - 1 through 7 (of 7 total)
Just to clarify, when you filter the publication vertically you can have the destination tables as Table1 and Table2 and then create a view on the 2 tables at the...
February 6, 2004 at 11:07 am
Use SET XACT_ABORT ON in your calling sproc.
When SET XACT_ABORT is ON, if a Transact-SQL statement raises a run-time error, the entire transaction is terminated and rolled back. When OFF,...
January 23, 2004 at 12:18 pm
I have another suggestion.
Let the job which checks for the date control the execution of your main job.
If not exists ( select date from [table1]
exec sp_start_job .....
Else
Print...
October 31, 2003 at 5:24 am
yes It does look like a bug. I am running SQL2k with SP2. I found it really strange that it does not allow these datatypes. I am going to do...
November 5, 2002 at 2:46 pm
Hi all ,
I found the "disallowed construct". I had a few columns defined as decimal ( 12, 4) and smalldatetime. When I changed the decimal to numeric and smalldatetime to...
November 5, 2002 at 2:23 pm
Here is the definition of my table. One has check constraint for district = '01' and another for district = '02'
The view definition is as follows:
create view ttodetail
AS
SELECT * FROM...
November 4, 2002 at 11:18 am
Thanks for the reply.
yes I did cover all the cases. I dropped and recreated 2 tables and used check constraint on the district column.
Then I populated the tables...
November 2, 2002 at 10:57 am
Viewing 7 posts - 1 through 7 (of 7 total)