Viewing 15 posts - 1 through 15 (of 16 total)
anil_kumar32 (7/7/2011)
[font="Times New Roman"]Good things that comes with SP are security, less network traffic and SQL injection aviodance.
[/font]
Attention with security. Sometimes SPs execute with admin permissions even when the...
July 7, 2011 at 2:50 am
As a developer I actually prefer to use stored procedures. If only SQLServer had a way to organize them in packages just like in Oracle so you wouldn't end up...
July 7, 2011 at 12:48 am
Bob Cullen-434885 (1/28/2010)
February 5, 2010 at 5:12 pm
foxjazz (3/13/2009)
foreach( select myfield from tbl where myotherfield > 3)
{
insert into myothertable (myotherfield) values (myfield)
}
I think...
April 3, 2009 at 2:40 pm
Though I am a database application developer, too, I know that there is more than just database programs out there. There are great programmers writing device drivers or embedded code....
July 6, 2007 at 4:42 pm
I had to do this for many years. There is no such thing as packages in Oracle. I could never figure out another way, so if there is one I'...
September 24, 2005 at 6:53 am
define an output parameter as table and use it as input to ur stored proc
September 24, 2005 at 6:48 am
anyway, in Access you would just link the "external data" in File --> external data etc.
September 24, 2005 at 6:16 am
use inserted.ID or deleted.ID in the "inserted" or "deleted" table, i.e. the inserted/deleted row
September 24, 2005 at 6:11 am
The problem does NOT seem to be the DB but rather a bad application design. Whatever db you use the problem will always be the same and cannot be "solved"...
September 24, 2005 at 4:42 am
You could check the data. Maybe records carry a creation date. Not precise but at least an idea.
June 14, 2005 at 5:24 pm
---- The user can do an ODBC to link to the table and open it in Access, update or insert data.
---- This user can link to that query but cannot...
June 14, 2005 at 5:10 pm
have you already more info than just a "feeling that they may be corrupt"? What error messages do you receive?
June 14, 2005 at 4:57 pm
I wonder why a global variable would go out of scope, though
declare @@myvar varchar(50)
June 14, 2005 at 4:47 pm
Viewing 15 posts - 1 through 15 (of 16 total)