Viewing 4 posts - 1 through 4 (of 4 total)
insert into a (b) values (1), (2), (3)
The above statement will result in the error mentioned below in case u use any other version of SQL other than SQL 2008
Incorrect...
April 22, 2010 at 4:05 am
Hi,
Here are some SSIS related Interview Questions with answers. hope they help.
1) What is the control flow
2) what is a data flow
3) how do you do error handling in SSIS
4)...
October 7, 2008 at 3:28 am
I agree.
Only the second option will give the desired result.
Below is the set of results we'll get after executing all the 3 options:
create table #temp1
(
EmpName nvarchar(200),
DateOfLeaving Datetime
)
insert into #temp1 values('Abc',...
June 24, 2008 at 11:30 pm
I think
sp_configure 'clr enabled', 1 actually enables clr
while sp_configure 'clr enabled', 1 GO RECONFIGURE GO, in theory enables and installs the feature.
Running sp_configure 'clr enabled', 1...
April 4, 2008 at 4:02 am
Viewing 4 posts - 1 through 4 (of 4 total)