Viewing 15 posts - 1,636 through 1,650 (of 2,840 total)
I do agree that using query hints is not a good idea, but why would you want to set the whole SQL Server to use MAXDOP?
-Roy
October 2, 2009 at 6:16 am
Hey GSquared, Cant you use SSIS to transfer the SPs? I am not sure if it can be done 2005 but it can be done in 2008. Or am I...
-Roy
October 1, 2009 at 2:00 pm
hahahaha.... I stand corrected.... That is what happens when you dont read it again before you post...:-D I meant that it does not have to be clustered.... 😛
Please note Paul...
-Roy
October 1, 2009 at 1:52 pm
PaulB-TheOneAndOnly (10/1/2009)
Roy Ernest (10/1/2009)
Please keep in mind that just because it is primary key, it has to be clustered.
mmhh... not entirely true.
Statement holds true only if 1) No clustered index...
-Roy
October 1, 2009 at 1:36 pm
You should look up LinkedServer on BOL. That will give you all the details you need. (sp_addlinkedserver)
-Roy
October 1, 2009 at 12:36 pm
So the Where clause you have is not a primary key?
-Roy
October 1, 2009 at 10:15 am
Are the Databases in two different servers?
If same you update using Alias.
Update a
set a.UnderwritingString = a.UnderwritingString + 'UW-R-Photo_-3;'
from Live.dbo.Application as a
JOIN
Test.dbo.Application as b
ON a.CertificateNrClean = b.CertificateNrClean
But please...
-Roy
October 1, 2009 at 10:13 am
Please keep in mind that just because it is primary key, it has to be clustered. You can always alter the table and change the cluster index to the column...
-Roy
October 1, 2009 at 10:02 am
Just one small question, Does that table have a clustered Index at all?
-Roy
October 1, 2009 at 9:45 am
There are no big problems when creating an index on varchar fields. I hope it is not varchar(MAX) though.
-Roy
October 1, 2009 at 8:22 am
It usually does not lock table when doing snapshot. But it will lock table when the Schema is generated. It will use a schema lock. But since this a big...
-Roy
October 1, 2009 at 7:50 am
What kind of replication is this?
-Roy
October 1, 2009 at 7:47 am
Ewan Hampson (10/1/2009)
Roy Ernest (10/1/2009)
Then the normal users will not be able to connect to the DB V-LAN with their excel and access.
But we all know the users have got...
-Roy
October 1, 2009 at 7:42 am
If you are not able to fix the parallelism issue, take a look at MAXDOP hint. Or if you are using SQL 2008, take a look at Resource governor.
But before...
-Roy
October 1, 2009 at 7:15 am
You can use V-LAN to secure the DB. Put the DB in one V-LAN, the application that has to connect to the DB in another V-LAN and the normal user...
-Roy
October 1, 2009 at 6:55 am
Viewing 15 posts - 1,636 through 1,650 (of 2,840 total)