Forum Replies Created

Viewing 15 posts - 166 through 180 (of 515 total)

  • RE: Inputs Required!!

    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...

  • RE: Inputs Required!!

    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,...

  • RE: CHOOSE - 1

    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.

  • RE: Question of the day

    Nice question. Thanks!

  • RE: Relational Model versus XML

    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...

  • RE: Identity Values

    Good one. Thanks!

  • RE: BIT data type

    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!

  • RE: EOMONTH - 1

    Thanks Ron for another one on SS 2012!

  • RE: Number of Rows

    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...

  • RE: Matching Missing Field

    I did observed this strange behavior, but was not aware of the reason behind this. Thanks 🙂

  • RE: TRY...CATCH

    Easy one for the day. Thanks 🙂

  • RE: Openrowset problem

    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$]')

  • RE: Openrowset problem

    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

  • RE: Ghost Cleanup

    Thanks Wayne. Got to learn something new today 🙂

  • RE: T-SQL 2012 #2

    Wow.. Thanks Ron for another one on SS2012 🙂

Viewing 15 posts - 166 through 180 (of 515 total)