Created
June 21, 2017 15:44
-
-
Save hishaamn/cf900f4b1319d35174fdf3affc758d25 to your computer and use it in GitHub Desktop.
Query the Link table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT TOP 1000 [ID] | |
,[SourceDatabase] | |
,[SourceItemID] | |
,[SourceLanguage] | |
,[SourceVersion] | |
,[SourceFieldID] | |
,[TargetDatabase] | |
,[TargetItemID] | |
,[TargetLanguage] | |
,[TargetPath] | |
,[TargetVersion] | |
FROM [Links] | |
WHERE ([SourceLanguage] = '' and [SourceVersion] <> 0) or ([TargetLanguage] = '' and [TargetVersion] <> 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment