Viewing 15 posts - 16,216 through 16,230 (of 39,825 total)
Jim has some good advice here. The main problem is trying to track the web user. If you move to requiring the person accessing the web site to log in,...
April 28, 2011 at 9:13 am
Do this:
set @sql = create login ' + @ip_newuser + ' with password = ''password'' ' ;
select @sql;
Take the output and look at it. Then try to run it manually...
April 28, 2011 at 9:03 am
dma-669038 (4/28/2011)
Steve, am not sure how you say that doing dev. work with dba work can land you jobs in smaller more fun companies...could you explain further? Thanks.
If you have...
April 28, 2011 at 8:57 am
junk.jjk (4/28/2011)
I am curious how you view the flip-side of that. Should "dev's" be similarly knowledgeable about dba work it truely be considered "dev's"?
It depends on the developer. If...
April 28, 2011 at 8:42 am
And the organization of those objects. It looks like schema is another area where we've "reused" a word too many times.
The schema has always meant the design as well. What...
April 28, 2011 at 8:38 am
It's a fairly arbitrary concept and with conflicting information on the calculations, it's hard to understand what is correct. The way that it's given in the white paper, which is...
April 28, 2011 at 8:35 am
The schema affects query performance only in terms of how many joins you might need to perform queries, but any balancing out to reduce query time can increase resources to...
April 27, 2011 at 9:24 pm
You have the logic there, just work through it.
First, check nickname. It it is null, then what? It looks like you are going a little too quickly with the logic....
April 27, 2011 at 9:17 pm
Thiago is correct. I would do
Raid 1 - OS and backups
RAID 10 - tempdb, system dbs, data files
RAID 1 - log files
How many drives do you have?
April 27, 2011 at 9:11 pm
Do not count on the index rebuild to fix this. As mentioned, an ORDER BY is required.
If anything was "working" before, it was coincidence, not causality. You could get the...
April 27, 2011 at 4:51 pm
Please explain what the issue is and show all the code. You must tell us what you think should happen and what is not happening. From the code, there is...
April 27, 2011 at 4:47 pm
stick tempdb and the systemdbs with the data files on R10. You likely won't get a huge benefit from separating them, and I'd combine them first.
Make sure you drop backups...
April 27, 2011 at 3:47 pm
Filegroups are about manageability and recoverability (enterprise has partial database availability). The file stack drivers don't perform better with more files. You aren't getting any parallelism there. Most databases have...
April 27, 2011 at 1:25 pm
Gentlemen,
You are welcome to debate this and it is interesting, but please keep it professional and agree to disagree about things that you cannot resolve. Please do not call each...
April 27, 2011 at 1:16 pm
GilaMonster (4/27/2011)
April 27, 2011 at 10:58 am
Viewing 15 posts - 16,216 through 16,230 (of 39,825 total)