Viewing 15 posts - 36,916 through 36,930 (of 39,818 total)
Internet - Use an anon user with Integrated security. Trap the user/pwds in the app and store them (encrypted pwd) in a table.
Intranet - Using Windows auth. Works well.
Steve Jones
November 19, 2002 at 2:48 pm
I think this will still work on 7.0. I reviewed a security book recently (not yet published) and the author had an interesting way to do this. Under NDA, so...
November 19, 2002 at 2:46 pm
Use a derived table
update ss
set
leadsTotal = stateOrProvince
, revenueGross = Revenuegross
, leadDistributed = leaddistributed
, leadCost =leadCost
from (
select leadsTotal = count(stateOrProvince)
, revenueGross = sum(leadRevenue)
, leadDistributed = sum(leadCount)
, leadCost =sum(leadRate)
, stateorprivince
from
#leadDistributionSummary
group...
November 19, 2002 at 2:44 pm
We're looking at SANS here, so it will be interesting to see how it performs.
Our standard for the data center:
1. RAID 1 - OS + SQL OS + pagefile
2. RAID...
November 19, 2002 at 1:37 pm
how about denyreader, denywriter?![]()
Seriously. In development, I'd give them some role (Developers?) that I created and assign the rights as needed. I keep the rights with the...
November 19, 2002 at 1:30 pm
You can deny access to a table for dbo, which is the user for sa in a database. However, not sure dbo can own the table, so you might need...
November 19, 2002 at 1:27 pm
SQL is more advanced than NT. 64 bit ready (different version), but the support is
there. SQL works with memory and processors, needs OS support.
Steve Jones
November 19, 2002 at 9:48 am
Not sure what you mean? Is one of the SQL Servers under professional? What versions of SQL?
Steve Jones
November 19, 2002 at 9:43 am
What is the source? Possible a network error? Or unable to gain an exclusive lock?
Steve Jones
November 19, 2002 at 9:40 am
no lock shouldn't matter.
I wouldn't do this. Instead, I'd use a process that runs every minute or so and looks for changes and sends mail. Less likely to cause...
November 19, 2002 at 9:35 am
Use multiplication (*1000) and then division to find things = 00.
Alternatively, change the datatype to numeric and limit to 2 decimals.
Or add a trigger to round to 2 decimals.
Steve Jones
November 19, 2002 at 9:29 am
I suspect the db creation is part of a transaction. IS this restoring any database or only a new database?
Steve Jones
November 19, 2002 at 9:27 am
Bad install. I'd reinstall the tools.
Steve Jones
November 19, 2002 at 9:04 am
Could be performance, mostly for tempdb. Personally, it's a standards thing. We move all the data to a drive and logs to another. May further separate out, but we have...
November 19, 2002 at 9:02 am
Profiler is your only shot
Steve Jones
November 15, 2002 at 4:56 pm
Viewing 15 posts - 36,916 through 36,930 (of 39,818 total)