Viewing 15 posts - 5,656 through 5,670 (of 13,468 total)
sys.objects is a view which is filtered on the database_principals permissions.
rows of data may exist for an admin which will not be visible to that user; simple enough to prove:
create...
April 4, 2012 at 7:50 am
well, as you probably read over at books online about sp_settriggerorder (Transact-SQL), you can set the first trigger, and the last trigger.
there is no way, with four triggers, to know...
April 4, 2012 at 5:39 am
ssegereise (4/4/2012)
I can no longer open my database its needs MS Sql SERVER Beta 2 how do i get it
databases all by themselves are independant of service packs.
only system databases(master,model,msdb)...
April 4, 2012 at 5:26 am
another way to do it:
use xp_cmdshell to get a list of all files in a directory, or all files including subdirectorys;
sticking that data into a table, you can join the...
April 3, 2012 at 3:27 pm
ok got it.
the files may have been deleted.
You could do it via xp_cmdShell, or with a nice CLR that Elliot Whitlow has posted out there:
http://nclsqlclrfile.codeplex.com/
then you can use a simple...
April 3, 2012 at 3:15 pm
Lynn Pettis (4/3/2012)[hr
I think the pointers may be to files stored elsewhere, not to data in the database.
[/quote]
must be a long day; i'm still not reading the requirement right yet.....
April 3, 2012 at 3:11 pm
ricardo.cuevas (4/3/2012)
April 3, 2012 at 3:04 pm
Is there an easier way to determine "good" vs "garbage"?
would it be a solution to find values not in the dictionary, or values that do not pass a spell check...
April 3, 2012 at 12:21 pm
if you want to script out the trace just in case you need to put it back again, I've posted a very nice TSQl for it you can find here:
April 3, 2012 at 10:46 am
do a quick SELECT * FROM sys.traces
if you have C2 auditing on, id=1 is the c2 trace, and id=2 is the default DDL trace;
otherwise id=1 is the default DDL trace.
everything...
April 3, 2012 at 10:43 am
pammu (4/3/2012)
mentioned rights given to the user and after executed the send mail query i am getting the below mentioned error. May be it needs some...
April 3, 2012 at 7:12 am
to make it 1:1, you simply add a unique constraint on the child table's column that is referencing the Parent;
so it's not a "type" of foreign key you are looking...
April 3, 2012 at 6:56 am
your user "TEST" needs to also be a user in the msdb database.
that user needs to be in the DatabaseMailUserRole which exists in that database.
something like this is the...
April 3, 2012 at 6:26 am
I absolutely did not mean to imply that you did not have any experience, and I definitely did not mean to offend you.
If you read my post that way, I'm...
April 3, 2012 at 4:56 am
SQLKnowItAll (4/2/2012)
Yup! Stepping away and observing because this is clearly not what I thought... 🙂
I think digging at the setup for db_mail is fine; we've got to get Welsh from...
April 2, 2012 at 3:17 pm
Viewing 15 posts - 5,656 through 5,670 (of 13,468 total)