Viewing 14 posts - 1 through 14 (of 14 total)
the users can do a dirty read on the table while it is being updated!! of course their results are not durable after the update.
August 9, 2006 at 12:38 pm
Did you try creating app role for the application alone to use? you can restrict access to everyone other than the application.
Vishy
May 9, 2006 at 1:51 pm
rdg,
here is how you can do it.
example in notrhwind db
select customerid, orderid, orderdate, freight ,(select count(*) from orders y where y.orderid <= x.orderid and y.customerid = x.customerid) as seq_num
from...
May 10, 2004 at 10:03 am
all you need to do is use dynamic sql to build you function and create it. You can prebuilt all you basic definitions and plug in the column names and...
March 29, 2004 at 12:35 pm
all you do is select db_name()
or select db_id()
-vishy
March 29, 2004 at 9:40 am
I am too confused too by the post. anyway the simple method to get a running total is to sum the measute within a subquery , for all ranges below...
March 26, 2004 at 5:04 am
From what you have posted it is apparent that the automatically grow file is not set the same way in development and production. Never use the default 10 percent, for...
January 30, 2004 at 2:02 pm
choose the appropriate transaction isolation level for each of the processes that were dead loacked. it should solve your problem.
November 24, 2003 at 5:17 am
could you please post your generic proc.. I would greatly appreciate that..
thanks
-vishy
June 6, 2003 at 7:57 am
try to use sp_attach_single_file_db to get a new log file...
pardon my terrible typing errors(previous reply)
April 23, 2003 at 1:17 pm
try to use ap_attch_single_file_db to get a new log file.
April 23, 2003 at 1:10 pm
"Shrinking the Transaction Log" is an excellent topic from BOL to answer this topic . It has a clear illustration as to what happens when you shrink the logfile.
sp_msforeachdb...
April 21, 2003 at 12:06 pm
builtin/administrators can be removed to deny access to sqlservers for local admins.
problems would arise if jobs need to do network access on that server, then not only "SA" level access...
February 24, 2003 at 10:52 am
quote:
I am using following command for truncating the log files. Is this the correct method to trucating the log files.Is there any...
October 18, 2002 at 1:47 pm
Viewing 14 posts - 1 through 14 (of 14 total)