Viewing 15 posts - 19,096 through 19,110 (of 19,564 total)
Do you have adequate permissions in AD to query and pull back the list?
Here is a query that you could integrate into xp_cmdshell if you wanted.
dsquery user -limit 0 |...
November 18, 2009 at 12:56 pm
George has a good point. There are scripts available to help automate the index reorgs rebuilds in smaller chunks at a time.
Smaller reindex operations will help to keep the...
November 18, 2009 at 12:49 pm
NP.
One last tidbit. It was written in 2k5. If it needs to work for SQL 2000, you will need to modify as you need.:cool:
November 18, 2009 at 12:46 pm
Thanks for the update on what finally worked for you in this scenario.
November 18, 2009 at 12:44 pm
DBAgal (11/18/2009)
Matt Miller (#4) (11/18/2009)
DBAgal (11/18/2009)
Typically, would something like email addresses/phone numbers be ok to store in a databases in the DMZ???
Would there be a downside to that data getting...
November 18, 2009 at 12:32 pm
Read this Blog Post on Nolock
Q. Will nolock provide a performance boost?
A. Yes it could, as well as provide unexpected results.
Read the article, it outlines some precautions with...
November 18, 2009 at 12:17 pm
Lynn Pettis (11/18/2009)
November 18, 2009 at 12:07 pm
Are you able to connect in Management Studio using the IP?
November 18, 2009 at 10:56 am
And to combine the two:
With IndexSize as (
SELECT objectname = object_name(object_id) ,reservedpages = SUM (reserved_page_count),usedpages = SUM (used_page_count)
,pages = SUM (
CASE
WHEN (index_id < 2)
THEN (in_row_data_page_count + lob_used_page_count + row_overflow_used_page_count)
ELSE lob_used_page_count...
November 18, 2009 at 10:46 am
With IndexSize as (
SELECT objectname = object_name(object_id) ,reservedpages = SUM (reserved_page_count),usedpages = SUM (used_page_count)
,pages = SUM (
CASE
WHEN (index_id < 2)
THEN (in_row_data_page_count + lob_used_page_count + row_overflow_used_page_count)
ELSE lob_used_page_count + row_overflow_used_page_count
END
)
,srowCount = SUM...
November 18, 2009 at 10:29 am
Yes, you will need to verify that 1335 is permitted through your firewall. You will also need to verify that the server is listening on 1335. Verify that...
November 18, 2009 at 10:10 am
It is possible to put a database in the dmz, as long as the data is disclosable (application centric), and then firewall it off. Typically, customer data should not...
November 18, 2009 at 9:57 am
Are you trying to create a scenario where every combination must be inserted into the database in pairs? And if the combination is not paired then it should not...
November 17, 2009 at 5:55 pm
Viewing 15 posts - 19,096 through 19,110 (of 19,564 total)