Viewing 14 posts - 16 through 29 (of 29 total)
ok..
i give u temporary table for u try..
CREATE TABLE #tamp
( WeekNo INT, FromDate SMALLDATETIME, ThruDate SMALLDATETIME, Period VARCHAR(6) )
INSERT INTO #tamp VALUES (36,'2016-08-29','2016-09-04','201609')
INSERT INTO #tamp VALUES (37,'2016-09-05','2016-09-11','201609')
INSERT INTO #tamp VALUES...
September 22, 2016 at 3:27 am
thanks for your great answer...!
December 17, 2015 at 8:50 pm
Yes, that's actually my design is calculating the formula based on the value of each rows. I made it because the user can freely adding any rows for a new...
October 17, 2015 at 8:42 pm
creating system DSN using odbcad32 and making linked server on sql server 2008 (x64) getting error when saving the connections..
it seems, system DSN that i created didn't detected on sql...
July 13, 2015 at 9:29 pm
ODBC Driver for visual foxpro does not support x64 version of windows.
I've tried it..
July 13, 2015 at 8:05 am
happycat59 (3/5/2015)
Try something likeselect
Field1
, Field2
, DENSE_RANK () OVER (ORDER BY Field1) AS SeqNo
FROM YourTable
yes.. it's get repeated seqno now based on field1, but it's sorted by field1.
it's not the...
March 5, 2015 at 9:56 pm
December 29, 2014 at 2:36 am
GilaMonster (12/29/2014)
gentong.bocor (12/28/2014)
December 29, 2014 at 1:57 am
GilaMonster (12/22/2014)
HanShi (12/22/2014)
December 29, 2014 at 1:52 am
No.. i'm using SQL2008 on client, server also using SQL2008..
As GilaMonster said, the problem came from client accessing server. I checked from management studio on client and it's already SP3
December 29, 2014 at 1:48 am
Hi..
I just check SELECT @@VERSION from my local connections, and here it is..
Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (Intel X86) Apr 2 2010 15:53:02 ...
December 28, 2014 at 11:27 pm
Hi..
How do i know if i already installed service pack or not yet ?
Thanks
December 21, 2014 at 7:47 pm
Thanks for all your participation solving my query problem..
🙂
August 31, 2014 at 8:11 pm
Viewing 14 posts - 16 through 29 (of 29 total)