Click here to Skip to main content
15,887,923 members
Home / Discussions / Database
   

Database

 
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 
QuestionLAN Application Pin
Mr.Kode9-Mar-07 2:14
Mr.Kode9-Mar-07 2:14 
QuestionLAN Application Pin
Mr.Kode9-Mar-07 0:52
Mr.Kode9-Mar-07 0:52 
QuestionRe: LAN Application Pin
N a v a n e e t h9-Mar-07 1:30
N a v a n e e t h9-Mar-07 1:30 
QuestionCreating Search Index Pin
N a v a n e e t h9-Mar-07 0:46
N a v a n e e t h9-Mar-07 0:46 
QuestionMirroring DB Pin
Tech_spidy8-Mar-07 22:07
Tech_spidy8-Mar-07 22:07 
AnswerRe: Mirroring DB Pin
N a v a n e e t h9-Mar-07 0:47
N a v a n e e t h9-Mar-07 0:47 
Questionbacking up the database without the actual data Pin
Rocky#8-Mar-07 20:52
Rocky#8-Mar-07 20:52 
AnswerRe: backing up the database without the actual data Pin
Hayder Marzouk8-Mar-07 21:33
Hayder Marzouk8-Mar-07 21:33 
GeneralRe: backing up the database without the actual data Pin
Rocky#9-Mar-07 20:45
Rocky#9-Mar-07 20:45 
Questionurgent on SQL Query Pin
Priya_20078-Mar-07 20:43
Priya_20078-Mar-07 20:43 
AnswerRe: urgent on SQL Query Pin
Harini N K8-Mar-07 20:55
Harini N K8-Mar-07 20:55 
GeneralRe: urgent on SQL Query Pin
Priya_20079-Mar-07 1:00
Priya_20079-Mar-07 1:00 
GeneralRe: urgent on SQL Query Pin
Marcus J. Smith9-Mar-07 3:57
professionalMarcus J. Smith9-Mar-07 3:57 
QuestionSQL SP [modified] Pin
daku18-Mar-07 17:04
daku18-Mar-07 17:04 

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.