Click here to Skip to main content
15,892,643 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Thought of the day Pin
Foothill26-Jan-17 5:57
professionalFoothill26-Jan-17 5:57 
GeneralRe: Thought of the day Pin
Corporal Agarn26-Jan-17 6:11
professionalCorporal Agarn26-Jan-17 6:11 
GeneralRe: Thought of the day Pin
Gary Wheeler26-Jan-17 6:39
Gary Wheeler26-Jan-17 6:39 
GeneralRe: Thought of the day Pin
W Balboos, GHB26-Jan-17 9:06
W Balboos, GHB26-Jan-17 9:06 
GeneralRe: Thought of the day Pin
OriginalGriff26-Jan-17 21:30
mveOriginalGriff26-Jan-17 21:30 
RantStupid request of the day Pin
Chris Quinn26-Jan-17 4:24
Chris Quinn26-Jan-17 4:24 
GeneralRe: Stupid request of the day Pin
OriginalGriff26-Jan-17 4:26
mveOriginalGriff26-Jan-17 4:26 
GeneralRe: Stupid request of the day Pin
User 483504726-Jan-17 4:27
User 483504726-Jan-17 4:27 
I've had similar problem once, here is the solution:
SELECT c.name AS 'ColumnName'
,t.name AS 'TableName'
FROM sys.columns c
JOIN sys.tables t ON c.object_id = t.object_id
WHERE c.name LIKE '%MyName%'
ORDER BY TableName
,ColumnName;

sql - Find all tables containing column with specified name - Stack Overflow

modified 20-Oct-19 21:02pm.

GeneralRe: Stupid request of the day Pin
Chris Quinn26-Jan-17 4:34
Chris Quinn26-Jan-17 4:34 
GeneralRe: Stupid request of the day Pin
User 483504726-Jan-17 4:37
User 483504726-Jan-17 4:37 
GeneralRe: Stupid request of the day Pin
Eddy Vluggen26-Jan-17 4:40
professionalEddy Vluggen26-Jan-17 4:40 
GeneralRe: Stupid request of the day Pin
Pualee26-Jan-17 4:47
Pualee26-Jan-17 4:47 
GeneralRe: Stupid request of the day Pin
Eddy Vluggen26-Jan-17 4:51
professionalEddy Vluggen26-Jan-17 4:51 
GeneralRe: Stupid request of the day Pin
Pualee26-Jan-17 5:23
Pualee26-Jan-17 5:23 
GeneralRe: Stupid request of the day Pin
Sander Rossel26-Jan-17 5:48
professionalSander Rossel26-Jan-17 5:48 
GeneralRe: Stupid request of the day Pin
User 483504726-Jan-17 4:51
User 483504726-Jan-17 4:51 
GeneralRe: Stupid request of the day Pin
Eddy Vluggen26-Jan-17 9:39
professionalEddy Vluggen26-Jan-17 9:39 
GeneralRe: Stupid request of the day Pin
User 483504726-Jan-17 10:11
User 483504726-Jan-17 10:11 
GeneralRe: Stupid request of the day Pin
Eddy Vluggen26-Jan-17 10:42
professionalEddy Vluggen26-Jan-17 10:42 
GeneralRe: Stupid request of the day Pin
User 483504726-Jan-17 10:59
User 483504726-Jan-17 10:59 
GeneralRe: Stupid request of the day Pin
Eddy Vluggen26-Jan-17 11:36
professionalEddy Vluggen26-Jan-17 11:36 
GeneralRe: Stupid request of the day Pin
OriginalGriff26-Jan-17 4:49
mveOriginalGriff26-Jan-17 4:49 
AnswerRe: Stupid request of the day Pin
Nish Nishant26-Jan-17 4:50
sitebuilderNish Nishant26-Jan-17 4:50 
GeneralRe: Stupid request of the day Pin
Chris Quinn26-Jan-17 4:51
Chris Quinn26-Jan-17 4:51 
GeneralRe: Stupid request of the day Pin
ZurdoDev26-Jan-17 5:18
professionalZurdoDev26-Jan-17 5:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.