Viewing 10 posts - 1 through 10 (of 10 total)
Here's a page that will help if you're getting the line length exception mentioned throughout this thread.
https://hashcat.net/wiki/doku.php?id=example_hashes
As noted by others, SQL 2005 and SQL 2008 require the -m parameter to...
April 26, 2015 at 12:44 pm
Le poisson d'avril. And that it's a time-based joke is so apropos.
April 1, 2015 at 7:33 am
Here's a complete test suite, Jeff. Steps 1 and 2 only need to be performed once. Step 3 you can tweak and run over and over to suit your needs....
May 6, 2012 at 3:46 pm
Agreed, Jeff, about the mindset. Simpler syntax does not equal better performance. But in this case, I believe that I'm on the right track. Look at the test results I...
May 6, 2012 at 11:32 am
OK Jeff, I took the challenge. I loaded 1,000,000 employees into the table with your script. Then I saved Chuck's procedures using his original names and my own (with a...
May 6, 2012 at 11:23 am
@tmarkham1 - I taught programming languages in college for 11 years and loved every minute of it. It was hard work but I found that I learned as...
May 6, 2012 at 7:55 am
Great points, Miika. In my experience with terabytes of hierarchical data in my system, recursive CTEs are faster, especially when going down the tree. Going up creates a single "thread"...
May 4, 2012 at 6:52 am
Jeff, the while loop-based approach works well if you have a few thousand records or less. And for employee data, that design is likely to provide sufficient performance. If you...
May 3, 2012 at 8:13 pm
The recursive CTE of these procedures is much faster on large data sets. Easier to grok, too, IMO:
CREATE PROCEDURE [dbo].[usp_Employee_Select_Down_Param_EmpID]
@selectEmpID INT = NULL, -- NULL = all
@maxSupLevel INT = 10...
May 3, 2012 at 11:17 am
I read somewhere that nearly half of French men carry a second mobile phone to hide their other life from their families. I'm not dissing French people but if that...
August 1, 2008 at 8:22 am
Viewing 10 posts - 1 through 10 (of 10 total)