Viewing 15 posts - 316 through 330 (of 412 total)
This was indeed an excellent article. And I must second the fact that RBAR would catch on a lot faster if it was pronounced 'AR-BAR'.
March 14, 2008 at 11:13 pm
Nita Reddy (3/12/2008)
That application does 200 Transaction per day, I mean 200 Update and insert will happen.
The database...
March 12, 2008 at 2:03 pm
This was a beautiful article. Thank you for both testing and quantifying what is normally assumed.
March 10, 2008 at 11:05 pm
Thanks Jeff. None of those are issues in my situations, but they make perfect sense for reasons someone might need to use this.
March 10, 2008 at 6:00 pm
Haidong Ji, This is an excellent article and I appreciate the information.
I do have one question though, I have worked with a variety of technologies,...
March 9, 2008 at 1:43 am
Thanks Jeff. I was hoping for something that would identify a valid identifier that does not require brackets (or double quotes when quoted identifier is on), but like you...
March 4, 2008 at 12:54 am
ksullivan (3/3/2008)
Do you mean to check if the string can become a table name or to check that a table with name = string exists?
I am trying to check if...
March 3, 2008 at 5:56 pm
That certainly makes sense. If ensuring that there is always a matching row requires a great deal of work, then triggers are probably the way to go for you.
February 29, 2008 at 7:45 am
Matt is right that Triggers are the way to get exactly what you are describing, but have you considered restructuring the data so that the relationship always exists?
That...
February 28, 2008 at 6:18 pm
sukhoi971 (2/27/2008)
iam managing a database with over 150,000 records
now iam getting erros becoz of null problem
i want to set the column default to 0
then column type is...
February 27, 2008 at 11:59 am
Sorry, I dropped off a parenthesis in there. Try:
declare @StoreKey int
select @StoreKey = 1
IF ((exists (select * from SYCFStore s WHERE s.Store_Key = @StoreKey AND s.Store_Inactive_Flag = 'N')...
February 26, 2008 at 5:31 pm
MrBaseball34 (2/26/2008)
and if the result of the query is 'Y', the menu is filtered out...
February 26, 2008 at 2:16 pm
Daniel R. Kusnadi (2/21/2008)
isn't just opening 'design table' from SQL management and edit the column to have identity or not, works as well?
or it might be just me...
February 25, 2008 at 5:05 pm
Loner, if someone gets promoted, give them a chance at it. I once had someone who worked under one of my subordinates who was just barely competent at his...
February 25, 2008 at 4:25 pm
Bill Wimsatt (2/19/2008)
February 19, 2008 at 6:10 pm
Viewing 15 posts - 316 through 330 (of 412 total)