Viewing 15 posts - 1 through 15 (of 38 total)
that is ok maybe someone else will jump on this is what i was trying to do
select del_cmd,filter,filter_clause,ins_cmd,name, upd_cmd,upd_scripting_proc from sysarticles
del_cmd filter filter_clause ins_cmd name upd_cmd ...
December 5, 2017 at 9:49 am
i feel the same way but the person i am working for insist it does
is there a way to get this using one or two queries
December 5, 2017 at 9:35 am
sorry no specific i have someone that wants to know the publisher name,publication, tables , sp_names and filters
i was guessing i have to join sysarticles and syspublications to get...
December 5, 2017 at 9:16 am
thanks i have given up i realize there is no easy way to do this in 2005
December 1, 2017 at 11:41 am
there does not seem an easy with with it for 2005 or anything with 2005
November 30, 2017 at 1:21 pm
you are and it is i posted here with title of 2005 because there is no 2005 forum
November 30, 2017 at 1:10 pm
it does not work on 2005 because the code has system tables that do not exist in 2005
November 30, 2017 at 12:47 pm
i get objects not found because the system tables for this in 2014 do not exist in 2005
November 30, 2017 at 11:16 am
here is my code that works on 2014
CREATE PROCEDURE [dbo].[get_crossdatabase_dependencies] AS
SET NOCOUNT ON;
CREATE TABLE #databases(
database_id int,
database_name sysname
);
INSERT...
November 30, 2017 at 11:03 am
when i run that against the database it returns nothing but my client says they do exist
Find the tables having Triggers starting with ‘FACTS’ and dump in excel
USALL-RS03...
November 30, 2017 at 10:07 am
no FACTS will just be in the trigger name
November 30, 2017 at 9:53 am
yes in the name of the trigger there are a lot of tables and we need a list of all triggers that contain the name FACT in the title of...
November 30, 2017 at 9:48 am
rats was hoping for a yes but it is what it is
thanks
November 28, 2017 at 10:10 am
Viewing 15 posts - 1 through 15 (of 38 total)