Viewing 15 posts - 16 through 30 (of 215 total)
Easy one compared to yesterday QOTD. yesterday i got it wrong. i did not verify verify between operation -1 and -10.
May 15, 2013 at 2:14 am
Raghavendra Mudugal (5/14/2013)
(Not sure and can't think of why one would use as "BETWEEN -1...
May 15, 2013 at 2:05 am
Even though i know the answer i got it wrong . I got confused with question
May 12, 2013 at 12:14 pm
nenad-zivkovic (5/9/2013)
Toreador (5/9/2013)
If a column is referenced in a subquery that does not exist in the table referenced by the...
May 9, 2013 at 1:39 am
I faced this issue when coding for my project work. We follow naming conventions and we use '_' for oltp tables. Before doing the functional testing I usually test...
May 9, 2013 at 1:34 am
Nice question. Thanks for author for submitting. Please keep posting this type of good questions.
May 8, 2013 at 2:34 am
Lokesh Vij (5/4/2013)
Good one!I remember posting a similar Qotd last year. Here is the link: http://www.sqlservercentral.com/questions/T-SQL/93222/[/url]
+1
May 4, 2013 at 5:33 am
Because Id value 4 is not exits in t2 table. Thats why you getting error.
If you have foreign key then the reference column value must exists in parent table.
below...
May 4, 2013 at 5:16 am
Koen Verbeeck (12/26/2012)
Checked 1 and 4 and then stopped thinking because I only had to select two 😀
Same thing happened for me also
May 2, 2013 at 8:49 am
hey am not expert in ssis.but i think you need to put equal for CONNECTION ="MySecond.Connection.String";
May 1, 2013 at 12:48 pm
May 1, 2013 at 12:23 am
It will show in white color when your service getting started.wait for some time. if still it is showing in white color right click on instance and restart the instance
April 30, 2013 at 11:04 pm
You can use multiple ctes like this
create table #temp (ID int, Name varchar(20))
insert into #temp
values
(10, 'Helen'),
(20, 'Joe'),
(30, 'Blake');
;with cte as
(select * from #temp)
,
cte1 as
(
select * from #temp
union all
select...
April 30, 2013 at 7:47 pm
Viewing 15 posts - 16 through 30 (of 215 total)