Viewing 15 posts - 1,891 through 1,905 (of 1,917 total)
markjrouse (3/26/2010)
Are there some perculiar behaviours of cursor I should be aware of?
...
March 26, 2010 at 9:47 am
Paul White NZ (3/26/2010)
A very similar example
hello Paul, i learnt CTE from BOL, so thot that i will frame the code similar to the one in BOL :-D... my tribute...
March 26, 2010 at 9:09 am
U can pass the ID column as well there...
;WITH HierarchyCTE (ID, EmpID , ReportingManager)
AS
(
SELECT EH.ID, EH.EmpID , EH.ReportToID
...
March 26, 2010 at 2:22 am
Here u go buddy!
;WITH HierarchyCTE (ID, EmpID , ReportingManager)
AS
(
SELECT EH.ID, EH.EmpID , EH.ReportToID
FROM...
March 26, 2010 at 2:14 am
Asane, @@LangID gives u the language ID of the current session, which is nothing but the configured language of the server...sys.syslanguages will also retreive you the date format as well.....
February 4, 2010 at 1:57 am
ok fine, i created some sample data and table
if object_id('dataset') is not null drop table dataset
create table dataset( file_no int , fromD int , toD int)
insert into dataset
select 101, 1101,...
February 3, 2010 at 7:13 am
Hi sir,
Please post some sample data along with schema as given in the following Jeff's post
http://www.sqlservercentral.com/articles/Best+Practices/61537/
That would help us a lot..
February 3, 2010 at 6:59 am
Guyz any updates on this?? do u guys needs more info on the error, i can give..
February 3, 2010 at 6:31 am
select * from sys.syslanguages where langid = @@langid
February 3, 2010 at 6:21 am
@Grant, even i faced similar result as results... when i run the code as a step in sql server agent, i am not getting the error **AT TIMES**... but when...
February 2, 2010 at 7:15 pm
Viewing 15 posts - 1,891 through 1,905 (of 1,917 total)