Viewing 7 posts - 1 through 7 (of 7 total)
Can anybody provide the script for getting the sequence
September 9, 2011 at 12:43 am
Here is the code, hope this will be helpful
SELECT convert(varchar,convert(Money, colName),1)FROM tableName
September 8, 2011 at 12:24 am
Does the sequence not have any zero's in the rightmost position? for example, is 000010 in your sequence or is that skipped, like A00000?
--------------------------------------------------------------------------------
the sequence has 000010.....999999
September 7, 2011 at 10:53 pm
SELECT TimesheetKey, SiteKey, [Date],
SUMDuration = SUM(Duration) OVER(PARTITION BY GroupRule), GroupRule
FROM #TIMESHEET
July 29, 2011 at 3:42 am
Hi Judo,
Execute the below query, you will be getting the result as you said
CREATE TABLE #TIMESHEET(TimesheetKey INT, SiteKey INT, Date VARCHAR(10), Duration INT, GroupRule INT)
INSERT INTO #TIMESHEET...
July 28, 2011 at 10:32 pm
The best practice is to create a Domain account for each service and use this account as a service account and run the services with these accounts.
Also for getting the...
May 18, 2011 at 3:38 am
Make sure that the server is in started state, also make sure that you have entered the correct server name on the server.
April 22, 2011 at 2:37 am
Viewing 7 posts - 1 through 7 (of 7 total)