5
votes
SQL Server normalization tactic: varchar vs int Identity
Using any kind of non-synthetic data (i.e. anything from the user, as opposed to generated by the application) as a PK is problematic; you have to worry about culture/localization differences, case …
-1
votes
How can one iterate over stored procedure results from within another stored procedure…without cursors?
You can use a temp table or table variable with an additional column:
DECLARE @MyTable TABLE (
Column1 uniqueidentifer,
...,
Checked bit
)
INSERT INTO @MyTable
SELECT [ …
1
vote
Change each record in a table with no primary key?
If for some reason you do have to iterate (the other answers cover the situation where you don't), I can think of two ways to do it (these aren't MySQL-specific):
Add a column to t …
1
vote
Setting Membership Store Passwords
I've used a variant of #1 in a live application. It worked great, users never noticed the change as far as I was aware.
A couple of refinements:
You don't need to prompt them …
0
votes
Algorithm for Auto-Appending a Unique ID to Duplicate Titles
declare @name nvarchar(40)
declare @suffix int
declare @currentName nvarchar(50)
set @name = 'My Document'
set @suffix = 1
set @currentName = @name
while …
