Viewing 15 posts - 16 through 30 (of 51 total)
opc.three (7/27/2011)
July 27, 2011 at 11:10 pm
David Portas (7/22/2011)
Subrata Bauri (7/15/2011)
Why does SQL Server allow to create a Table Without a Primary key ?What is the intention behind this ?
Microsoft is just following the SQL standard....
July 22, 2011 at 11:48 pm
PaulB-TheOneAndOnly (7/16/2011)
If you are not planning to enforce Referential Integrity on the particular table then PK is not needed.
By the way, not only SQL Server allows for it - that's...
July 17, 2011 at 11:25 pm
Sean Lange (7/15/2011)
This really won't let you get an accurate count. It will work until you delete a record. If you want an arbitrary number as your primary key use...
July 17, 2011 at 11:20 pm
GilaMonster (7/15/2011)
July 15, 2011 at 6:53 am
Jayanth_Kurup (7/15/2011)
July 15, 2011 at 6:12 am
I just want to know why does SQL Server allow duplicate value. What is the
purpose behind it ?
duplicate value may create some issues.
July 15, 2011 at 5:00 am
subrata.bauri-1051938 (6/29/2011)
Lowell (6/29/2011)
if you run this:
SELECT * FROM table
where psp_item_no = 'DRR07DFAB0034'
AND psp_ps_no = 16
how many rows show up? if there...
June 29, 2011 at 6:58 am
Lowell (6/29/2011)
if you run this:
SELECT * FROM table
where psp_item_no = 'DRR07DFAB0034'
AND psp_ps_no = 16
how many rows show up? if there is...
June 29, 2011 at 6:50 am
glen.wass (6/29/2011)
select top 1 * fromwhere column=
and column=
order by desc
It may not be the 1st row. Ok.
June 29, 2011 at 6:36 am
update #temp
set #temp.Quantity_mc = a.Total
from #temp Inner...
June 29, 2011 at 4:28 am
ColdCoffee (6/9/2011)
select pmd.psp_item_no,pmd.psp_item_var,sum(psp_qty_prpnl) as Total
from pmddb..pmd_mpsp_ps_postn pmd
--== added freshly
...
June 10, 2011 at 4:16 am
Thanks for reply..
Plz look my code below :
update #temp ...
June 10, 2011 at 12:28 am
Viewing 15 posts - 16 through 30 (of 51 total)