Click here to Skip to main content
15,913,722 members
Home / Discussions / Database
   

Database

 
GeneralRe: How to recover identity ID after insert in MSSQL 2008? Pin
PIEBALDconsult11-May-11 14:34
mvePIEBALDconsult11-May-11 14:34 
GeneralRe: How to recover identity ID after insert in MSSQL 2008? Pin
jschell12-May-11 9:01
jschell12-May-11 9:01 
GeneralRe: How to recover identity ID after insert in MSSQL 2008? Pin
PIEBALDconsult12-May-11 14:57
mvePIEBALDconsult12-May-11 14:57 
QuestionBusiness Intelligence Development Studio (Add-in to Visual Studio .NET 2008) Pin
Xiangyang Liu 刘向阳3-May-11 5:27
Xiangyang Liu 刘向阳3-May-11 5:27 
AnswerRe: Business Intelligence Development Studio (Add-in to Visual Studio .NET 2008) Pin
Xiangyang Liu 刘向阳5-May-11 3:15
Xiangyang Liu 刘向阳5-May-11 3:15 
GeneralRe: Business Intelligence Development Studio (Add-in to Visual Studio .NET 2008) Pin
Eddy Vluggen5-May-11 3:53
professionalEddy Vluggen5-May-11 3:53 
QuestionFulltext index in sqlserver 2008 Pin
awadhendra tiwari3-May-11 3:21
awadhendra tiwari3-May-11 3:21 
AnswerRe: Fulltext index in sqlserver 2008 Pin
Eddy Vluggen3-May-11 9:36
professionalEddy Vluggen3-May-11 9:36 
awadhendra tiwari wrote:
I have problem where I have get list of all tables on which full text index can be applied with their key names.

SQL
  SELECT TC.[TABLE_SCHEMA]
       , TC.[TABLE_NAME]
       , CCU.[COLUMN_NAME]
       , TC.[CONSTRAINT_NAME]
    FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS TC
    JOIN INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE CCU ON TC.[CONSTRAINT_NAME] = CCU.[CONSTRAINT_NAME]
   WHERE TC.[CONSTRAINT_TYPE] = 'PRIMARY KEY'
     AND EXISTS (
            SELECT *
              FROM INFORMATION_SCHEMA.COLUMNS C
             WHERE C.[TABLE_NAME] = TC.[TABLE_NAME]
               AND C.[DATA_TYPE] IN (
                     'char', 
                     'varchar', 
                     'nchar', 
                     'nvarchar', 
                     'text', 
                     'ntext', 
                     'image', 
                     'xml', 
                     'varbinary', 
                     'varbinary(max)'
                     )
         )
ORDER BY TC.[TABLE_NAME]

awadhendra tiwari wrote:
its urgent

The people that visit this site do so in their spare time. Rushing would be inappropriate.
I are Troll Suspicious | :suss:

QuestionSQL Server : Query Cost (relative to the batch): 100% Pin
NTheOne2-May-11 20:15
NTheOne2-May-11 20:15 
AnswerRe: SQL Server : Query Cost (relative to the batch): 100% Pin
i.j.russell2-May-11 21:33
i.j.russell2-May-11 21:33 
Questionmysql metadata locks Pin
piticcotoc1-May-11 21:34
piticcotoc1-May-11 21:34 
AnswerRe: mysql metadata locks Pin
Chris Meech2-May-11 6:30
Chris Meech2-May-11 6:30 
GeneralRe: mysql metadata locks Pin
piticcotoc4-May-11 2:02
piticcotoc4-May-11 2:02 
QuestionLINQTOSQL at runtime Pin
wjbjnr30-Apr-11 19:08
wjbjnr30-Apr-11 19:08 
AnswerRe: LINQTOSQL at runtime Pin
dasblinkenlight2-May-11 8:48
dasblinkenlight2-May-11 8:48 
GeneralRe: LINQTOSQL at runtime Pin
wjbjnr2-May-11 17:58
wjbjnr2-May-11 17:58 
GeneralRe: LINQTOSQL at runtime Pin
dasblinkenlight3-May-11 0:38
dasblinkenlight3-May-11 0:38 
QuestionMS SQL MS - Trim Trailing Spaces (not in the data...) Pin
ammills0129-Apr-11 6:31
professionalammills0129-Apr-11 6:31 
AnswerRe: MS SQL MS - Trim Trailing Spaces (not in the data...) Pin
Corporal Agarn29-Apr-11 9:26
professionalCorporal Agarn29-Apr-11 9:26 
GeneralRe: MS SQL MS - Trim Trailing Spaces (not in the data...) Pin
ammills014-May-11 4:36
professionalammills014-May-11 4:36 
GeneralRe: MS SQL MS - Trim Trailing Spaces (not in the data...) Pin
Corporal Agarn4-May-11 4:48
professionalCorporal Agarn4-May-11 4:48 
QuestionSQL Query for Update Column Pin
Member 465028728-Apr-11 22:02
Member 465028728-Apr-11 22:02 
AnswerRe: SQL Query for Update Column Pin
Blue_Boy28-Apr-11 23:16
Blue_Boy28-Apr-11 23:16 
GeneralRe: SQL Query for Update Column Pin
Member 465028728-Apr-11 23:56
Member 465028728-Apr-11 23:56 
GeneralRe: SQL Query for Update Column Pin
Blue_Boy29-Apr-11 0:46
Blue_Boy29-Apr-11 0:46 

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.