Viewing 15 posts - 2,581 through 2,595 (of 2,840 total)
GilaMonster (10/27/2008)
Can you post table structure, query and Statistics IO output for running the query? (SET STATISTICS IO ON)
I did that.
Table 'tbDataList'. Scan count 1, logical reads 6005, physical reads...
October 27, 2008 at 10:54 am
Let me give you the reason why I did not want Shared Storage. We had a SAN Drive and we had cluster on the Production DB. Our SAN failed once...
October 27, 2008 at 10:32 am
I havent worked with RedGate. We use Lite speed. it is also pretty good at compressed back ups. If you have a new server, I second the idea of Log...
September 23, 2008 at 2:46 pm
You can Check IsNULL or you could use Case Statement to insert a space when the value is NULL.
September 23, 2008 at 8:25 am
homebrew01 (9/23/2008)
Jeff Moden (9/22/2008)
My recommendation is to peel one potato at a time. To know which potato to peel first, you must do some measuring. Put the following...
September 23, 2008 at 8:18 am
Is this the output of your response.write?
Update web Set answer11='gerste' where identity=''3597@10P136P12P125''
I see double quotes in the identity part. Check the Identity part. Also if I am not mistaken Identity...
September 16, 2008 at 8:53 am
I do not think that it came in as query string. If the page has Input Boxes where customer/user can enter values, then it must have come through there.
I...
September 11, 2008 at 11:02 am
That is for that particular DB. You can try to login with the user and do a select on sysobjects. You will see an access denied
September 11, 2008 at 10:35 am
You can deny all on any tables that you want for that user.
For example if Test is the web user, then you can do a
deny all on sysobjects...
September 11, 2008 at 10:16 am
What kind of Rights does the Web Application User have? Check the rights of the user and remove access to objects that are not needed.
September 11, 2008 at 8:37 am
Developers having access to production it self is a bit too dangerous in my humble opinion. You dont know what they will run. You get a Select * with no...
September 10, 2008 at 12:27 pm
Update A
set a.AudType = b.AudType,
a.AudCompID = b.AuDCompID,
a.AudDate = b.AudDate,
xxx
xxx
xxx
a.ClearedDate = b.ClearedDate
from hist1999 as a
JOIN dailyupload as b
on a.ID = b.ID
Insert into hist1999
(ID, AudType, AudCompID,...
September 10, 2008 at 10:27 am
It is way low. The only thing I did not dig into much is is there will be Locking over head when it is trying the Update even though there...
September 10, 2008 at 8:56 am
My preference is that the User that connects to the DB from a web application should not be able to do any raw SQL. make sure that the User does...
September 10, 2008 at 8:40 am
Viewing 15 posts - 2,581 through 2,595 (of 2,840 total)