Search Results
Search type | Search syntax |
---|---|
Tags | [tag] |
Exact | "words here" |
Author |
user:1234 user:me (yours) |
Score |
score:3 (3+) score:0 (none) |
Answers |
answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
Views | views:250 |
Code | code:"if (foo != bar)" |
Sections |
title:apples body:"apples oranges" |
URL | url:"*.example.com" |
Saves | in:saves |
Status |
closed:yes duplicate:no migrated:no wiki:no |
Types |
is:question is:answer |
Exclude |
-[tag] -apples |
For more details on advanced search visit our help page |
A version of Microsoft's database server, released in August 2008. This is different than SQL Server 2008R2.
16
votes
Accepted
Is there a way I can use SQL Server management studio to find all columns that have column n...
Mmhh you could try:
use <your_database>
select o.name,c.name
from sys.columns c inner join sys.objects o on c.object_id=o.object_id
and o.type = 'U'
and CHARINDEX('<your_sub_string>', c.name)>=1
0
votes
0
answers
743
views
Cannot add Domain Users to SQLServer security
I installed a win2008 server (WSQL)
Its has successfully joined another Win2008 server which is the domain controller.
Now back to WSQL machine, I connect it to the domain... And I install SqlServer- …