Viewing 15 posts - 31 through 45 (of 73 total)
dwain.c (6/21/2012)
CREATE TABLE #tblLottery
(
...
June 22, 2012 at 9:45 am
Lowell (6/14/2012)
farax_x (6/13/2012)
...a customer who has more score has greater chance to win.
you'd have to explain the rules. for example, if i have a "score" of 5, do i have...
June 14, 2012 at 6:59 am
Tnx for your replies
Dave Ballantyne (6/14/2012)
Untested
with ctenum
as
(
Select top(100) Row_number() over (order by (select null)) as rown
from sys.columns
)
SELECT TOP 5...
June 14, 2012 at 4:33 am
Problem solved :w00t:
SELECT name
INTO #test
FROM sys.sequences
DECLARE @c INT ,
@name NVARCHAR(50)
SELECT @c = COUNT(1)
FROM #test
WHILE @c...
May 19, 2012 at 12:21 am
I found my problem, it was because of this : pk was non-clustered index i change it 2 cluster index and everything is ok now.
tnx
November 25, 2011 at 12:26 am
I know pal, but I just want to get my post up 😛
October 15, 2011 at 1:52 am
TheSQLGuru (5/17/2011)
May 17, 2011 at 10:43 pm
SQLRNNR (5/11/2011)
Have the business requirements for data retention and when data should be archived been clearly defined?
Yes, I have 2 servers, one for live data and other one for archived...
May 11, 2011 at 11:54 am
Viewing 15 posts - 31 through 45 (of 73 total)