Viewing 15 posts - 8,791 through 8,805 (of 9,641 total)
I don't know a way to tell other than from data. Of course you may be stuck because your host may only do nightly full backups so Monday night...
April 16, 2008 at 8:02 am
If you were to place a clustered index on ParentID you would get more page splits and have slower inserts/updates because the entry would have to be inserted into the...
April 16, 2008 at 8:00 am
Have you done any troubleshooting at the database level with sp_who/sp_who2 to see if there is blocking?
Does it happen to the same users every time for every report?
Does it happen...
April 16, 2008 at 7:37 am
Okay, I wasn't clear that you wanted to implement this using triggers. Your triggers would have to go on the tables in the source db and implementing this way...
April 15, 2008 at 1:14 pm
Where it gets tricky is do you want to have the ability for the users to parameterize those queries? How do you handle parameters?
I know I can be a...
April 15, 2008 at 12:31 pm
Can you explain what you need to do? Sql Server works best with sets and recursion is typically a row by row operation. My guess is that there...
April 15, 2008 at 12:18 pm
I have typically avoided using bit fields, but don't rule them out. I believe your developer is right in regard to #1. Because of teh lack of selectivity...
April 15, 2008 at 12:02 pm
Since both databases are on one server then they will contend for server resources (memory, cpu, network, tempdb, etc...), but locking in one will not affect locking in the other,...
April 15, 2008 at 11:50 am
Are logging onto the server using the SQL Server Service account? With SQL Server 2005 there should not be a need to logon to the server using the SQL...
April 14, 2008 at 1:59 pm
With 2005 DDL triggers you could use a Server scoped trigger on Create Database to create a job to backup that database. I have not done this, but it...
April 14, 2008 at 1:56 pm
Sorry, my bad. The first paramter, d, needs to be either without any quotes or in double-quotes.
April 11, 2008 at 9:16 am
Grant,
All good points and mostly ones I have heard and made before. Having been mostly a Hybrid SQL DBA\Developer in small shops I have not encountered nHibernate, but...
April 11, 2008 at 6:52 am
I avoid providing Salary Information as much as possible. Having provided it once cost me job because the company thought they could get me cheaper than someone else because...
April 11, 2008 at 6:38 am
Grant,
Why don't you tell us how you really feel about ORM and Linq to SQL? You might want to check out Andy Warren's blog as he has several posts...
April 11, 2008 at 6:18 am
alenavafer (4/11/2008)
April 11, 2008 at 6:14 am
Viewing 15 posts - 8,791 through 8,805 (of 9,641 total)