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...
* Noel
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...
* Noel
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...
* Noel
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...
* Noel
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...
* Noel
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...
* Noel
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...
* Noel
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
* Noel
February 17, 2005 at 2:58 pm
Dave:
What is the problem with using sp_help_job and use the current_execution_status field ?
* Noel
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...
* Noel
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 ![]()
* Noel
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...
* Noel
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
* Noel
February 17, 2005 at 2:03 pm
Viewing 15 posts - 4,186 through 4,200 (of 5,103 total)