Click here to Skip to main content
15,898,992 members
Home / Discussions / Database
   

Database

 
GeneralRe: How to select any field that contain a certain word .. SQL server 2000 Pin
mghiassi11-Mar-07 2:15
mghiassi11-Mar-07 2:15 
GeneralRe: How to select any field that contain a certain word .. SQL server 2000 Pin
kindman_nb11-Mar-07 5:28
kindman_nb11-Mar-07 5:28 
QuestionSQL 2000 Client [modified] Pin
TheEagle10-Mar-07 0:55
TheEagle10-Mar-07 0:55 
AnswerRe: SQL 2000 Client Pin
Dave Kreskowiak11-Mar-07 4:28
mveDave Kreskowiak11-Mar-07 4:28 
GeneralRe: SQL 2000 Client Pin
TheEagle11-Mar-07 5:51
TheEagle11-Mar-07 5:51 
GeneralRe: SQL 2000 Client Pin
Dave Kreskowiak11-Mar-07 6:37
mveDave Kreskowiak11-Mar-07 6:37 
GeneralRe: SQL 2000 Client Pin
TheEagle11-Mar-07 6:16
TheEagle11-Mar-07 6:16 
GeneralRe: SQL 2000 Client Pin
Dave Kreskowiak11-Mar-07 14:04
mveDave Kreskowiak11-Mar-07 14:04 
GeneralRe: SQL 2000 Client Pin
TheEagle12-Mar-07 0:07
TheEagle12-Mar-07 0:07 
QuestionSql Server Pin
anishmm10-Mar-07 0:22
anishmm10-Mar-07 0:22 
AnswerRe: Sql Server Pin
Hesham Amin10-Mar-07 3:37
Hesham Amin10-Mar-07 3:37 
AnswerRe: Sql Server Pin
alexrad11-Mar-07 0:35
alexrad11-Mar-07 0:35 
AnswerRe: Sql Server Pin
Harini N K11-Mar-07 18:36
Harini N K11-Mar-07 18:36 
Questionproblems in setting up transactional replication in SQL Server 2000 Pin
Rocky#9-Mar-07 20:48
Rocky#9-Mar-07 20:48 
AnswerRe: problems in setting up transactional replication in SQL Server 2000 Pin
Hesham Amin9-Mar-07 22:33
Hesham Amin9-Mar-07 22:33 
AnswerRe: problems in setting up transactional replication in SQL Server 2000 Pin
alexrad10-Mar-07 22:47
alexrad10-Mar-07 22:47 
GeneralRe: problems in setting up transactional replication in SQL Server 2000 Pin
Rocky#11-Mar-07 23:18
Rocky#11-Mar-07 23:18 
Questioncleako freak , its too bad to ask help from one like u Pin
Mr.Kode9-Mar-07 13:53
Mr.Kode9-Mar-07 13:53 
QuestionRemote queries Pin
alexrad9-Mar-07 13:30
alexrad9-Mar-07 13:30 
AnswerRe: Remote queries Pin
Colin Angus Mackay10-Mar-07 0:23
Colin Angus Mackay10-Mar-07 0:23 
Questioncheck if row number is odd or even Pin
kani989-Mar-07 12:05
kani989-Mar-07 12:05 
AnswerRe: check if row number is odd or even Pin
Hesham Amin9-Mar-07 22:25
Hesham Amin9-Mar-07 22:25 
Do you want to check for the ID of the PK column or the order of the record?
in the first case:
Select *,case (ID % 2) when 1 then 'Odd' Else 'Even' End from items
in the second case (SQL Server 2005 only):
Select *,case (row_number() over (order by ID) % 2) when 1 then 'Odd' Else 'Even' End<br />
from items



Hesham A. Amin
blog

QuestionDesign question [modified] Pin
gumi_r@msn.com9-Mar-07 6:56
gumi_r@msn.com9-Mar-07 6:56 
QuestionINNER and OUTER key words: What's the point? Pin
ToddHileHoffer9-Mar-07 2:35
ToddHileHoffer9-Mar-07 2:35 
AnswerRe: INNER and OUTER key words: What's the point? Pin
Colin Angus Mackay9-Mar-07 2:53
Colin Angus Mackay9-Mar-07 2:53 

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.