Viewing 15 posts - 1 through 15 (of 26 total)
thanks george sibbald for your information
May 2, 2016 at 9:32 pm
thanks Alan Burstein,Gail Shaw for you feedback , my point was the same query will perform differently when i execute that in local pc and in server , i will...
April 19, 2016 at 12:31 am
Thanks beside sharing the folder and adding protection the problem was i initialized the secondary database manually and the restore state with set to restore with recovery .
solution:
change the restore...
March 6, 2016 at 12:07 am
thanks for your feed back jeff, since i already implemented the first solution provided when i received the code in my project just wanted to change that rather then...
January 4, 2014 at 11:00 pm
ChrisM@Work (1/3/2014)
DECLARE @Result TABLE (Serial nvarchar(10),Title varchar(20))INSERT INTO @Result
SELECT '1.1','a' UNION ALL
SELECT '1.2.1','b' UNION ALL
SELECT '1.2.2','C' UNION ALL
SELECT '1.2.3.4','G' UNION ALL
SELECT '1.11','B' UNION ALL
SELECT '1.2.33.4.5','Extra row' UNION ALL
SELECT '2.3','B' UNION...
January 3, 2014 at 11:57 pm
thanks Michael Valentine Jones for you solution if you could find time please change your solution to example i provided above.
January 3, 2014 at 9:28 am
thank you very much chris for providing the solution.
January 3, 2014 at 9:13 am
yeah jeff as already answered to my similar query in here .
http://www.sqlservercentral.com/Forums/Topic1194903-338-1.aspx#bm1196064
but i can not reproduce in this example.
i think 5 element will be enough .
i tried this...
January 3, 2014 at 7:59 am
thanks chris for your reply . i need a recursive way to deal with serial hierarchy.
the problem is the serial can be like this.
DECLARE @Result TABLE (Serial nvarchar(10),Title varchar(20))
INSERT INTO...
January 3, 2014 at 6:23 am
thank you very much Sony Francis @EY,Eugene Elutin,dwain.c for your feedback.
November 19, 2012 at 9:04 pm
the solution is to convert the column to varchar and run that inside subquery, hope it will help some one else with similar problem, now one more thing here left...
November 17, 2012 at 11:48 am
i have changed the my input and output and add date and comments to make it clear, for multiple entry with in a month it shall take the last entry.
declare...
October 2, 2012 at 10:53 pm
the rule here is we have month no here.
1. check secondmonth amount
2. sum(second month amount) > sum(first month amount)
3. get the difference
4. difference is greater then sum(first month amount)...
October 1, 2012 at 5:27 am
Just the bold part i didn't get does it depend on number of levels or any other thing and the conversion of hierarchypath to binary why it is required?
WITH
cteSplit...
October 25, 2011 at 9:59 pm
Viewing 15 posts - 1 through 15 (of 26 total)