Viewing 15 posts - 61 through 75 (of 281 total)
Do you back up on a tape? Any trouble with that tape?
April 29, 2010 at 4:34 am
At this moment I do not know anything about your reporting needs and environment. I'd say that the database snapshot is suitable for you, however consider the limitations (BOL --->...
April 29, 2010 at 3:52 am
In my opinion this is rather a design problem. Try to redesign your query like this, for example:
SELECT <column_list> FROM <table> WHERE CategoryID = <category id for "hotels"> AND...
April 29, 2010 at 2:14 am
Grant Fritchey (4/23/2010)
dmoldovan (4/23/2010)
Select the events and other trace properties in the GUI, start the trace, immediately stop it and select File ---> Export. This way you'll...
April 23, 2010 at 8:32 am
Follow Grant's good advice.
Select the events and other trace properties in the GUI, start the trace, immediately stop it and select File ---> Export. This way you'll obtain the scripted...
April 23, 2010 at 7:40 am
Which events did you select for the trace you're running?
April 23, 2010 at 6:02 am
Download Tom Davidson's white paper from Microsoft (Google ---> search for sys.dm_os_wait_stats white paper).
You can find there scenarios for OLTP and warehousing environments.
April 23, 2010 at 5:50 am
Try o use the APPLY operator
April 23, 2010 at 5:21 am
Query the sys.service_message_types, sys.service_contracts, sys.service_queues, sys.conversation_endpoints catalog views.
For exemple, this query (taken from http://www.apress.com/book/view/1590598423) gets the contracts for the defined services:
SELECTsv.[name] AS [Service],
sc.[name] AS [Contract]
FROM sys.services sv
JOIN sys.service_contract_usages...
April 23, 2010 at 4:33 am
SQL ORACLE (4/22/2010)
...and their log files have the sizes of 0 MB....
I'm not sure I understand this...
April 23, 2010 at 4:13 am
Convert the csv into xml and import the xml using the "nodes" method of the xml datatype.
April 22, 2010 at 6:48 am
There are also a missing index on the ImpressionTitle table.
Check for the "MissingIndexes" tag in the xml plan.
April 22, 2010 at 5:40 am
You can also try a PowerShell script
If you prefer VB, search their "script repository".
You can easily schedule the script using SQL agent or Windows "scheduled tasks".
April 21, 2010 at 10:59 am
Microsoft recommends to "isolate services", see http://msdn.microsoft.com/en-us/library/ms144228(SQL.90).aspx
I have some experience in running a SQL 2005 instance on a domain controller. The MSSQLSERVER service ran on a domain account....
April 14, 2010 at 5:03 am
Viewing 15 posts - 61 through 75 (of 281 total)