Viewing 15 posts - 16 through 30 (of 36 total)
Can anyone please explain or refer an article as to how the str worked out to give the results.
November 21, 2012 at 6:07 am
It's always good to learn new concepts , even though I got the question wrong.:-P
November 21, 2012 at 5:50 am
A nice explanation to the Locking and Isolation Level article can be viewed at :-
http://www.sqllion.com/2009/07/transaction-isolation-levels-in-sql-server/
November 21, 2012 at 5:45 am
Sorry Matt, cannot move over to use SSIS.:crying:
July 14, 2012 at 9:04 am
I believe we can add an "OR " clause to the query to get the 20120101 record into the result set.
[code="(SELECT *, ROW_NUMBER() OVER (PARTITION BY Customer_id ORDER BY date,...
February 27, 2012 at 5:08 am
Seems you have got a class -assignment , either case I guess ,you have not understood the SQL concepts well or have not studied them. Please go through and I...
February 13, 2012 at 5:28 am
Use a UNION ALL --> in case you want all records from both the tables.
Use a UNION --> in case you want to eliminate duplicate records.
February 1, 2012 at 6:37 am
Try this ..
create table dbo.testvalue (datevalue datetime,value int)
insert into dbo.testvalue
select '2012-01-02',0 union all
select '2012-01-08',0 union all
select '2012-01-11',0 union all
select '2012-01-15',0 union all
select '2012-01-03',1 union all
select '2012-01-04',1 union all
select '2012-01-05',1 union...
January 23, 2012 at 5:53 am
Check IEEE Xplore for new research happenings in fields of your choice. You can also check into International Journal of Database Management which is an academicia and industry collaboration journal.;-)
January 20, 2012 at 5:01 am
This may sound a bit pre-historic, but, to get hold of the problematic query(s) in a batch you can run it in batch by batch. This way you can see...
January 19, 2012 at 10:00 am
You must understand the basic normalization concepts to create the database. As far as my understanding of normalization (as per Codd:- key,only the key and nothing but the key) I...
January 6, 2012 at 7:13 am
Thomas Abraham (1/5/2012)
And then I started thinking ... but WHY can't...
January 5, 2012 at 6:05 am
Hi,
More information about the restriction can be found at the below link;
January 5, 2012 at 6:03 am
Could anyone please guide , as to, under which scenario should one opt for such concurrent activity ?
December 30, 2011 at 4:47 am
Viewing 15 posts - 16 through 30 (of 36 total)