Viewing 15 posts - 46 through 60 (of 88 total)
By default the SET XACT_ABORT is OFF. There ar very few cases where the T-SQL statement that raised exception are rolled back and the transaction continues processing. Depending upon the...
March 11, 2015 at 5:55 am
As this is very old thread.
But just updating this with the solution that the new keyword THROW introduced in SQL Server 2012 will serve the purpose.
THROW in CATCH block will...
February 3, 2015 at 11:57 pm
I was anticipating this kind of reply 🙂
just stumbled on this thread, didn't realized its 6yrs old :w00t:
But the fact remains same right, then & now? 😎
August 5, 2014 at 11:13 am
+1 for Matt's response.
Theoretically Covering Index & Included Columns are same. The difference should be cited as: Covering Index/Included Columns vs Composite Index.
August 5, 2014 at 11:00 am
I would suggest not to rely on DUMPS if you really want to add value to your carrier.
You can check my blog post for 70-461 exam: http://sqlwithmanoj.wordpress.com/2012/11/16/passed-70-461-exam-querying-microsoft-sql-server-2012/[/url]
All the best!!!
August 4, 2014 at 10:43 pm
In my opinion just similar to others:
- TABLES are database Objects and
- CURSORS are Programming Constructs (not to confuse with the cursor data-type),
no matter how you declare them.
An...
October 29, 2013 at 12:17 am
Do check following site for the preparation of 70-461 exam.
Link: http://sqlwithmanoj.wordpress.com/2012/11/16/passed-70-461-exam-querying-microsoft-sql-server-2012/[/url]
May 7, 2013 at 12:14 pm
Check following blog post on what to prepare for 70-461 Exam (Querying SQL Server 2012)
Link:http://sqlwithmanoj.wordpress.com/2012/11/16/passed-70-461-exam-querying-microsoft-sql-server-2012/[/url]
November 21, 2012 at 11:31 am
Sean Lange (9/20/2012)
Yes it is true that sometimes you can't the code and that is exactly why I said he may be stuck with it. I would vehemently disagree about...
September 20, 2012 at 1:38 pm
@sean, Cursors were never on bad performance, its upto you when and how you use them. Some developers use them very early rather than creating complex set based...
September 20, 2012 at 1:17 pm
Yes, as mentioned by @Grant use "Upgrade Advisor" for SQL Server 2008. Check this blog post where I used the same for upgrading to SQL Server 2012, link: http://sqlwithmanoj.wordpress.com/2012/09/02/upgrade-to-sql-server-2012-use-upgrade-advisor/[/url]
This tool...
September 20, 2012 at 12:50 pm
Well answer to this is "it depends" on situation to situation, like: volume of data, indexes on columns and selectivity of rows.
IN & NOT IN generally should be avoided and...
September 20, 2012 at 12:43 pm
jeff.mason (6/20/2012)
July 26, 2012 at 10:26 pm
It is true you can make cursors more optimal than a while loop but why bother with them at all? In your examples there is absolutely nothing that can't be...
July 26, 2012 at 8:59 am
What kinds of patterns you want to search for?
If not complex then you can use some expressions with LIKE clause.
Like if you want to search Canada ZIP codes, which are...
July 26, 2012 at 8:43 am
Viewing 15 posts - 46 through 60 (of 88 total)