Viewing 15 posts - 4,186 through 4,200 (of 5,103 total)
In this case I don't think there are many clear advantages of one over the other method. But Here are some points for you to consider.
1. Method1 is using an...
February 22, 2005 at 11:32 am
Here are some of the reasons I have come across:
- App Vendor specific collation / sort order / case sensitivity
- Hard Coded Server Name
- Customer Isolation (by request)
- Service Pack...
February 22, 2005 at 9:00 am
Dave, Steve, DarylAndDaryl
Do you want to give this a shot? ....(IT WORKS FOR ME)
select *
from
openrowset ('SQLOLEDB','Server=(local);Trusted_Connection=yes','SET FMTONLY OFF EXEC msdb.dbo.sp_help_job') q
--where q.name...
February 22, 2005 at 8:32 am
FROM BOL:
-------------------------------------------------------
Disabling FOREIGN KEY Constraints
Existing FOREIGN KEY constraints can be disabled for:
.............
...........
------------------------------------------------------
Therefore they can't be disabled for TRUNCATE TABLE operations, you will have...
February 18, 2005 at 2:44 pm
Lori,
On index analysis column-order matters! and not only that the first column should be the most selective
The indexes you show are deinetly being...
February 18, 2005 at 11:10 am
Linda how big is the budget
If you can go to SAN disk then SAN replication is your best bet!
If that is too expensive...
February 18, 2005 at 8:17 am
JN,
I did that as an example, for the real deal you to get the data from tmp_listing not from Propmaster like it was on the example if you use:
FROM tmp_Listings B
Where...
February 17, 2005 at 3:28 pm
JN,
The NOT EXISTS is meant to be used as:
FROM PropMaster A
Where NOT EXISTS ( Select * FROM tmp_Listings B Where B.LSID = A.ListingID )
HTH
February 17, 2005 at 2:58 pm
Dave:
What is the problem with using sp_help_job and use the current_execution_status field ?
February 17, 2005 at 2:53 pm
Linda,
LogShipping is meant for STANDBY servers not for reporting because the user connections are going to be kill every time a log is restored! You coud though have TWO log...
February 17, 2005 at 2:49 pm
You may want to change the "NOT IN" for a "NOT EXISTS". "NOT IN" tends to be dagerous
February 17, 2005 at 2:18 pm
What I was trying to say is:
If your MODEL Database has the 'default to local cursor' ON/TRUE then your cursors are going to be local (Mine are like that). For Databases that...
February 17, 2005 at 2:15 pm
Change:
FROM PropMaster A, tmp_Listings B
WHERE A.ListingID <> B.LSID
to:
FROM tmp_Listings B left join PropMaster A on A.ListingID = B.LSID
WHERE A.ListingID IS NULL
February 17, 2005 at 2:03 pm
Viewing 15 posts - 4,186 through 4,200 (of 5,103 total)