Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
2k views

Does GCC inline C++ functions without the 'inline' keyword?

Does GCC, when compiling C++ code, ever try to optimize for speed by choosing to inline functions that are not marked with the inline keyword?
5
votes
3answers
1k views

What can happen as a result of using (nolock) on every SELECT in SQL Sever?

I get that the (nolock) optimizer hint allows for "dirty reads", but under what very specific scenarios is this a bad idea? I've never seen such widespread use of (nolock) in an organization, and it ...
3
votes
2answers
81 views

How to compile and start VSC++ Projects Faster?

What techniques do you use to compile and start VSC++ projects fast? For us, especially the loading of all the dlls take a long time. Is there a way to speed this up? The project loads a ton of .dlls ...
2
votes
2answers
139 views

Optimizing simple search script in PowerShell

I need to create a script to search through just below a million files of text, code, etc. to find matches and then output all hits on a particular string pattern to a CSV file. So far I made this; ...
1
vote
3answers
100 views

Oracle-style execution hints

When you write rather complex SQL for Oracle, sooner or later you will have to apply the odd execution hint because Oracle can't seem to figure out the "best" execution plan itself. ...
1
vote
0answers
262 views

How to use rowlock and readpast with NHibernate?

I have an application which currently reads data from a table using the following stored procedure: CREATE PROCEDURE [dbo].[GetBatchOfEmails] @BatchSize INT AS BEGIN SET NOCOUNT ON; WITH ...
1
vote
1answer
316 views

Stored procedures and OPTIMIZE FOR UNKNOWN

I've read up on the SQL Server 2008 OPTIMIZE FOR UNKNOWN query hint. I understand how it works. However, I have a question on where and when to use it. It cannot be specified inside a UDF. It can be ...
1
vote
1answer
173 views

Should i use MAXDOP to improve my maintenance stored procedure?

Okay so i understand the basics of MAXDOP, but i want to understand if this a valid scenario for using it. I have a stored procedure which is quite resource hungry, but has been optimized to the max. ...
1
vote
2answers
138 views

How can I choose different hints for different joins for a single table in a query hint?

Suppose I have the following query: select * from A, B, C, D where A.x = B.x and B.y = C.y and A.z = D.z I have indexes on A.x and B.x and B.y and C.y and D.z There is no index on A.z. How can I ...
0
votes
2answers
611 views

__builtin_expect from GCC with probability

__builtin_expect from GCC can be used by programmer to show which variants are expected to be very often and which are rare. But __builtin_expect have only "true" and "false" (0% or 100% ...
0
votes
1answer
233 views

Optimize two simple nested loops

I have been trying to optimize the two following nested loops: def startbars(query_name, commodity_name): global h_list nc, s, h_list = [], {}, {} query = """ SELECT wbcode, Year, ...
0
votes
1answer
872 views

Is direct-path insert a good way to do bulk inserts in Oracle?

We're trying to figure out the best way to handle BULK INSERTs using Oracle (10gR2), and I'm finding that it can be a pretty complicated subject. One method that I've found involves using the Append ...