Viewing 15 posts - 11,491 through 11,505 (of 13,462 total)
there you go Jeff; Call Microsoft and tell them that the premiere RE-BAR avoidance specialist is offering to rewrite any of their 194 stored procs at the everyday low price...
March 1, 2009 at 10:04 am
very wierd;
I have half a dozen DotNetNuke installations either locally, for friends, or on my hosted web site;
if you are in as sa or admin you should see everything;
when i...
March 1, 2009 at 7:50 am
ok a few ideas;
first to be clear, there is no way to update the data "before" a select statement gets called.
While I know it's possible for the data to be...
February 28, 2009 at 4:11 pm
what have you tried so far?
you can find all the modified dates and creation dates in sys.objects;
filter the type column for types like 'P' and 'FN', etc
sp_helptext gives you the...
February 28, 2009 at 6:01 am
you have to create a trigger for each table you want to audit. it's rare that you really need a trigger on EVERY table...just specific ones is more common.
look in...
February 28, 2009 at 5:29 am
readonly permissions?
stored procs only have EXECUTE permissions...
do you mean to read the text of procedure from sp_helptext procname,
or
permission to execute EXECUTE the procedure, but have only READONLY permission...
February 27, 2009 at 6:57 pm
I'm assuming 's one specific table right?
restore the backup under a different name... once it'se you can investigate what data is missing, and check other tables for missign data as...
February 27, 2009 at 6:50 pm
here's a step by step, using the DATEADD function, which is hte better way to tackle this i think:
as far as positive or negative, you'd want to handle that as...
February 27, 2009 at 5:53 pm
you are on the right track as using an identity to help generate the varchar; that's the way we've suggested it for similar issues.
like JKSQL said, the way to do...
February 27, 2009 at 5:28 pm
here's an example:
create table test (id int identity, category varchar(100),
name varchar(100), allnames varchar(8000) null)
insert test (category, name)
select 'fruit', 'apple' union
select 'fruit', 'pear' union
select 'fruit', 'orange' union
select 'meat' , 'beef'...
February 27, 2009 at 4:06 pm
the other important question is, how often does the remote data change? what is the time tolerence for the application(is it bad that the data is 1 min/10 min/1 day...
February 27, 2009 at 11:21 am
it sounds like if someone runs a SELECT command, you want to make sure you have the "latest and greatest" data from remote servers/locations, is that right?
instead of running yourstored...
February 27, 2009 at 11:16 am
just remove the GO just before the ALTER command:
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO
changes to
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON
i would simply pass the ALTER...
February 27, 2009 at 11:07 am
excellent post by providing the table and data...thank you!
The thing is, DISTINCT is used against all selected columns...so if you select * from 3 tables, you probably are not going...
February 27, 2009 at 11:02 am
in SSMS or Query analyzer, you can't...as you identified, the GO statements start a new batch, and you can't interupt the processing of the batches without raising an error severity...
February 27, 2009 at 10:23 am
Viewing 15 posts - 11,491 through 11,505 (of 13,462 total)