Viewing 15 posts - 136 through 150 (of 257 total)
So the major drawback is that they are executed for every row? Why wouldn't I want a Scaler Function to execute for every row
August 31, 2004 at 7:03 am
Stored Procs (in my opinion) are good for updating large sets of data or maintaining Business Logic while Saving / Deleting Records. I find them very inefficient for returning data...
August 30, 2004 at 7:20 am
First off, I'd like to say that this was an "OK" example. This is definately NOT how I would approach this issue of Proper Case. Since most of the time...
August 20, 2004 at 9:07 am
Clay has a point. This often comes up when designing an interface / presentation layer to my database objects. Recently though, I've been taking advantage of .NET's DataSets & Relationships...
August 16, 2004 at 6:57 am
dcpeterson, I couldn't have said it better!
August 13, 2004 at 10:22 am
I use .NET and Stored Procs heavily. Since I basically control the Business Logic and Database aspects of an application, I want to make sure that other programmers do NOT...
August 13, 2004 at 8:04 am
Well, there's comes a point and time when you'll be working all weekend trying to fix a client's data...and because it's so screwed up you don't really care anymore about integrity...
July 25, 2004 at 12:35 pm
I guess it was more of a hypothetical question. I know they are good to have. Unfortunately, I cannot control the client's IS Dept. However, I just wish SQL Server...
July 25, 2004 at 11:22 am
Well, I've discovered it's impossible to restore from T-Logs if you don't have every single one of them from begining to end. So I ask...what good are they??
Anyway, I downloaded...
July 24, 2004 at 2:23 pm
Well, I think I am doomed. I did what you said, which worked...to a point. However, my T-Logs are not in order. I am missing one day's worth because the...
July 24, 2004 at 12:17 pm
Why would you want to? You'll already have that Key in your DataTable. Unless you've got a Student who is logged into two machines at the same time, and somehow...
June 16, 2004 at 1:27 pm
Since I hate Identity Columns (i.e. Autonumbers) I will suggest a new Key for your Tables... It sounds like you can get away with this. However, you can always go...
June 14, 2004 at 2:47 pm
What kind of table is this? What is it used for or what data does it contain?
June 14, 2004 at 9:52 am
Well, @@IDENTITY is not always safe to use ...Read the BOL. Instead you should use...
Select Ident_Current('TableName')
...which will give you the last inserted ID on that...
June 14, 2004 at 6:46 am
Of course you're having dificulty! You need another Column Called "WordType" which would discern whether it's a Verb, Noun, etc.
May 21, 2004 at 1:48 pm
Viewing 15 posts - 136 through 150 (of 257 total)