Viewing 15 posts - 166 through 180 (of 515 total)
sainatth.wagh (1/27/2013)
Hi,Yes by trail i mean the login and logoff feature.
Any inputs on that would be helpful. Regarding the CDC functionality, I have already implemented that.
If you are talking about...
January 27, 2013 at 11:18 pm
If you are looking to audit CURD operations on tables. Like if you want to know which columns have been updated and want to know the old values as well,...
January 27, 2013 at 10:21 pm
Thanks Ron for another one on SS 2012.
Though I understood the CHOOSE function well, but have to query Employee table to get the answer correctly.
January 27, 2013 at 10:15 pm
Got this question wrong!
But yes there is a scope for improvement. Either question could have provided more details or answer choices could have been framed better (as pointed out...
January 24, 2013 at 3:30 am
An easy one for the day. Looking at all the answers, it was quite obvious to find the correct one (the odd one out).
Posting the correct link:
http://msdn.microsoft.com/en-us/library/ms177603.aspx
Thanks!
January 21, 2013 at 9:37 pm
I knew there was a discussion on similar question recently, still got the answer wrong 🙂
Whilst, I was trying to look at the queries executed in estimated execution plan, my...
January 17, 2013 at 9:22 pm
I did observed this strange behavior, but was not aware of the reason behind this. Thanks 🙂
January 16, 2013 at 9:49 pm
humm... Try this out then
Execute this first:
EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'AllowInProcess', 1
GO
EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'DynamicParameters', 1
GO
Then try to execute your query with this change:
SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
'Excel 8.0;Database=C:\Users\sathiyanr\Desktop\dynamic.xlsx',
'SELECT * FROM [Sheet1$]')
January 15, 2013 at 6:54 am
Try to execute the following set of commands and check if this works:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Ad Hoc Distributed Queries', 1;
GO
RECONFIGURE;
GO
January 15, 2013 at 6:13 am
Viewing 15 posts - 166 through 180 (of 515 total)