Viewing 15 posts - 46 through 60 (of 146 total)
Thanks for the reply, I assume that its only SQL x86 that suffers from this limitation ?
August 4, 2009 at 6:48 am
thats a good point actually, i was just wondering whether there is a quicker way to do this programatically.
August 4, 2009 at 6:46 am
Good point
Just then when you have loads of commas, the time & efford that it will take to write dynamic SQL, one could actually manually install it on all the...
August 1, 2009 at 1:49 am
What I have found is that if functions are not created in the right order, they can break replication. As articles are sent down to subscribers in the wrong order,...
July 30, 2009 at 1:50 pm
Thanks for the reply.
The plan is as follows, run a script that will order all objects according to dependency orderings, based on this in the form of a cursor. Run...
July 30, 2009 at 9:23 am
I meant objects created out of order, the problem is more apparent when you deploy large sets of scripts and one procedure fails because it was created first before the...
July 30, 2009 at 8:33 am
Thanks for the reply, what I have is just a database which the collation settings requires changing, because the table functions needs to be recompiled in order to reflect the...
July 29, 2009 at 12:01 pm
Thanks Guys,
Still dont understand the table variable approach, the cursor approach would just involve loading the select query into a cursor variable right ?
July 29, 2009 at 9:57 am
Steve Jones - Editor (7/28/2009)
--Which objects in the database are published?
select name as published_object, schema_id, is_published as is_tran_published, is_merge_published, is_schema_published
from sys.tables where is_published = 1 or is_merge_published =...
July 28, 2009 at 1:20 pm
Steve Jones - Editor (7/28/2009)
here possibly could be stored procedures or system elements left, but if you have removed replication, that doesn't matter. It won't impact your server instance.
Thanks.
Do you...
July 28, 2009 at 9:52 am
Chandu (7/28/2009)
I have disabled replication on a SQL installation, but I have a feeling there are still come reminants from replication left on the database.
Did you disable replication or removed...
July 28, 2009 at 8:54 am
Thanks for the info
below is the script I'm using
declare @fromCollation sysname,
@toCollation sysname
set @fromCollation = 'SQL_Latin1_General_CP1_CS_AS'
set...
July 6, 2009 at 9:41 am
Thanks for the reply, I cannot see any begin tran in the code above, or is it not needed.
Secondly, is there a workaround for transaction handling if the table does...
July 6, 2009 at 8:29 am
Viewing 15 posts - 46 through 60 (of 146 total)