Rick

656
Reputation
80 views

Registered User

Name Rick
Member for 1 year
Seen Dec 1 at 0:51
Website
Location New Zealand
Age 30
Primarily a SQL Server developer, I have a bit more than 10 years experience in Enterprise-level IT projects.
  • I started in Fortan 77 on a VAX VMS (DEC Alpha mainframe);
  • worked up through Pascal, VB6 and Coldfusion;
  • led a couple of Java development teams;
  • was senior team leader for a dotNet team for a couple of years;
  • spent some time doing PHP on MySQL for a startup;
  • and now am in charge of managing and developing the database systems and applications for L'Oreal NZ.
Oct
15
answered Remove subversion sourcecontrol from a project (visual studio/tortoiseSVN)
Sep
17
awarded  Yearling
Sep
4
comment sql server 2005 - trigger to hash password at insertion
Make sure you add a salt to the password before hashing it, to avoid rainbow table attacks.
Sep
3
comment How to UPDATE TOP 400 ?
Also works on SQL 2005, but requires the brackets: TOP (n). See SQL 2005 BOL, UPDATE statement, TOP () clause.
Sep
3
comment How to UPDATE TOP 400 ?
He must be using SQL 2000, as SQL 2005 supports the TOP () clause for UPDATE statements. SQL 2000 doesn't have CTEs, so he can't really use this.
Aug
7
comment How do I make one user see a different table with same name
You can't make a view with the same name as an existing table in the same schema. If you try, you'll get error Msg 2714 ("object with that name already exists").
Aug
7
answered Push Replication
Aug
7
comment Best way to store large dataset in MSSQL Server?
+1 for the comment about selectivity, probably has the biggest impact
Jul
24
accepted SQL Server IF NOT EXISTS Usage?
Jul
24
answered SQL Server IF NOT EXISTS Usage?
Jul
24
comment SQL Server IF NOT EXISTS Usage?
1 in that case is just a constant. All he cares about is that a row is returned, not the value of any columns. Using a constant is usually faster than using * or a specific column list.
Jul
24
comment SQL Server error on update command - “A severe error occurred on the current command”
+1 for suggesting triggers.
Jul
16
comment What are the most common SQL anti-patterns?
@recursive: you can't have indexes on a table variable, which will often make it slower than a subquery. However you could use a temporary table with custom indexes.
Jul
15
comment What are the most common SQL anti-patterns?
The prefixes can be useful if you're scripting the objects to files (eg: for source control, deployments or migration)
Jul
15
revised Need only Date from DateTime
added 832 characters in body
Jul
15
comment Need only Date from DateTime
That only gives the day of the month, for example today is the 16th of July, so datepart(day, getdate()) would return 16. I think he wants '2009-07-16' instead.
Jul
15
answered Need only Date from DateTime
Jul
7
comment Tidy for SQL
Website is free to use, but the add-in for SSMS is $40 USD.
Jul
7
comment Tidy for SQL
Website is free to use, but the add-in for SSMS is $40 USD.