Viewing 15 posts - 3,961 through 3,975 (of 5,103 total)
Increase the maximum number of errors allowed in the properties of the datapump
April 12, 2005 at 1:57 pm
There are two parts to the problem.
If you look at the query plan on SQL Server you will be surprised that sometimes (when it is possible) your where expressions are...
April 12, 2005 at 1:55 pm
..... I know, I know, It will always depends on how the process is but I just posted for the fun of it ![]()
I...
April 12, 2005 at 1:44 pm
Here is a wild try:
insert into users
(
InsertDate
,ADT.Username
,ADT.initials
,ADT.facsimileTelephoneNumber
,ADT.streetAddress
,ADT.manager
,ADT.whenCreated
,ADT.uSNChanged
,ADT.DN
,ADT.objectClass
,ADT.[name]
,ADT.objectGUID
,ADT.[description]
,ADT.displayName
,ADT.userAccountControl
,ADT.sAMAccountName
,ADT.sn
,ADT.givenName
,ADT.memberOf
,ADT.homeMTA
,ADT.proxyAddresses
,ADT.homeMDB
...
April 12, 2005 at 1:34 pm
Your function and <> is converting the expression in not "SARG"able the not Like 'cy%' can be converted into like '[^cy]%' which is SARGable therefore your speed!
April 12, 2005 at 1:01 pm
>>Do you guys consider it wrong to write code like:
Declare @value1 as int
Select @Value1 = @Column1 From Table1
IF @Value1 is > 0
begin
Exec stored_Procedure1 @Value1=@Value1
end
ELSE
begin
Exec stored_Procedure2
end
. <<
Oh...
April 12, 2005 at 12:53 pm
Well,
It has been my experience that restore is slower than attach.
I do agree though that the backup/restore (as a whole) may be faster depending on file size (specially whe using...
April 12, 2005 at 12:35 pm
Believe me I've had that feeling too ![]()
April 12, 2005 at 12:20 pm
>> Correct me if I'm wrong...
If you delete a record using the query tool in Enterprise Manager (NOT Query Analyzer) I believe its not logged. Thats why its so dangerous to mess...
April 12, 2005 at 12:03 pm
try:
SELECT Invoice.pk as InvoiceId, LastCharges.chrgtype, LastCharges.chrgamt, LastResponses.respamt, LastResponses.resptype
FROM Invoice
LEFT JOIN (select fk_Invoice, chrgtype, chrgamt
from InvoiceCharge ic1
where chrgdate = (select Max(chrgdate)
from InvoiceCharge ic2
where ic2.fk_invoice...
April 8, 2005 at 4:14 pm
And what the heck kind of attribute is a "tblpupil" -- are you reaching furniture instead of kids?
Joe,
With all the respect you deserve I think you are crossing...
April 8, 2005 at 12:42 pm
Did you checked REGIONAL SETTINGS on the OS and @@language on SQL Server
I don't really understand the purpose of that many conversions but you may want to try this:
DATENAME (weekday, DATEADD...
April 8, 2005 at 12:32 pm
use start/continue from sql server service manager ![]()
April 8, 2005 at 12:14 pm
Viewing 15 posts - 3,961 through 3,975 (of 5,103 total)