Viewing 15 posts - 4,756 through 4,770 (of 13,465 total)
tikoti (9/12/2012)
Is there anyway to "grep" a database in sql server 2008?
I mean, look for a specific string in any table, in any column, in any row
I know that it...
September 12, 2012 at 5:38 am
neellotus07 (9/12/2012)
Your query showing tables of any view, but if view contains another view then it is not showing name of that view.
Can u help me in this regard.
Thanx...
September 12, 2012 at 5:34 am
just checkign the basic here...I see you are using inner joins, and not left outer joins...
you are sure the inserted.userId will always have a value that exists in the...
September 11, 2012 at 1:11 pm
probably the easiest way is to use the Scripting wizard in SSMS;
right click on the database in question, Choose "Tasks", then "Generate Scripts"
follow the wizard prompts;
you might need to go...
September 11, 2012 at 9:47 am
johnnyrmtl (9/10/2012)
Thanks for that and it does indeed work on a sole database at a time.I would need it to run from master and get all databases
you would jsut wrap...
September 10, 2012 at 11:21 am
raj_melvin (9/10/2012)
but I am unable to capture the required informations like " Hostname" ,"local ip" and "Application Name" ect.
this is for a...
September 10, 2012 at 6:04 am
raj_melvin (9/10/2012)
Thanks Very Much this is really usefull.Appriciate your help.
is there is anyway we can get the same output using the SQL Audit
please help,
To the best of my knowledge, SQL...
September 10, 2012 at 5:52 am
FreeHansje (9/10/2012)
September 10, 2012 at 5:42 am
raj_melvin (9/10/2012)
Logon trigger - In case any issue with the trigger this will not allow any users to login into the DB.outpout in table is more preferable.
a well written trigger...
September 10, 2012 at 5:34 am
samaneh.lashgari82 (9/9/2012)
September 9, 2012 at 7:22 am
including the columns referenced:
select
OBJECT_NAME(depz.object_id),
OBJECT_NAME(depz.referenced_major_id),
colz.name,
*
from sys.sql_dependencies depz
left outer join sys.columns colz
on depz.object_id = colz.object_id
and depz.referenced_minor_id=colz.column_id
where ...
September 8, 2012 at 9:37 am
This is one of those "in a perfect world "scenarios, in my case.
I can see that for large projects, but what about smaller projects or enhancements?
There was a recent...
September 8, 2012 at 5:14 am
I have this saved in my snippets that seems to do a good job of generating explicit permissions;
does this produce the results you are after for a single database?
select sys.schemas.name...
September 7, 2012 at 2:20 pm
ok here's a quick prototype i *think* does what you are asking;
it's basically a power-replace that cross joins your funciton symbols with a know list of repalces;
does this work the...
September 7, 2012 at 2:11 pm
Viewing 15 posts - 4,756 through 4,770 (of 13,465 total)