Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
tolisss
Starting Member
17 Posts |
Posted - 2007-07-23 : 17:07:35
|
| hi i want to apply a group by on the followingSELECT Article.IDFROM Article INNER JOIN ArticleStructureLanguageProperty ON Article.ID = ArticleStructureLanguageProperty.Article INNER JOIN StructureLanguageProperty ON ArticleStructureLanguageProperty.StructureLanguageProperty = StructureLanguageProperty.ID INNER JOIN CONTAINSTABLE(Article, SearchAbleData, '"Ý÷åé"') AS KEY_TBL ON Article.ID = KEY_TBL.[KEY]WHERE (StructureLanguageProperty.Language = 1)any ideas please?? why am i getting a timeout expeption after applying group by? ami missing something |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2007-07-23 : 17:13:34
|
| What indexes do you have on the tables?Tara Kizerhttp://weblogs.sqlteam.com/tarad/ |
 |
|
|
|
|
|