Viewing 15 posts - 61 through 75 (of 138 total)
ChrisM@Work (2/26/2014)
February 26, 2014 at 7:56 am
put a semicolon in front of the with on the CTE
February 26, 2014 at 7:27 am
We do this all the times for finding the nearest store from your current location. Yes, the big long formula works, is accurate down to inches, and is feasible on...
February 26, 2014 at 7:13 am
I have used caching more for search pages, but not with more recent hardware. The old days of submitting a request and waiting 15 minutes are gone. We would save...
February 26, 2014 at 6:09 am
please post the times from the script I posted.
you do not have any method to force SQL to keep data in memory. It uses a LRU (Least Recently Used) algorithm...
February 26, 2014 at 6:01 am
Grant Fritchey (2/26/2014)
February 26, 2014 at 5:47 am
default schema. when you added sysadmin it is looking for the table in the dbo schema, not the users schema
February 25, 2014 at 7:46 pm
ok, I think I understand the requirements. You need to store the last run time somewhere. Otherwise, if you start up at 14:15 on Tuesday, you have no idea if...
February 25, 2014 at 7:15 pm
since this is happening in other environments, go to your test environment
run the query
record the time
run the query
record the time
run dbcc dropcleanbuffers
wait a few seconds
run the query
record the time
if possible,...
February 25, 2014 at 7:02 pm
I believe you need to reference the column again on in the partition scheme. Seems redundant, but it does not need to match 100%.
CREATE CLUSTERED INDEX [ByCreatedWhen_idx] ON [dbo].[SXEvent]
([CreatedWhenUTC]...
February 25, 2014 at 5:14 pm
Is the query scanning or seeking on the index? The optimizer will always list the perfect index, but in many cases a close index is good enough. If you are...
February 25, 2014 at 4:46 pm
I want to make sure I understand before posting answers. You want the hourly schedule to show and run 3 times if the service was down for 3 hours?
February 25, 2014 at 1:42 pm
The risks vary depending on other settings and configs but some are:
1) If you lock out a login, you only effect a single instance
2) if a password is leaked, they...
February 25, 2014 at 12:15 pm
start up Performance Monitor
add SqlServer:Buffer Manager: Page Life expectancy to the graph
execute the query
If you see a sudden drop when the query is slow, then the data is not in...
February 25, 2014 at 12:05 pm
No, every install of SQL should have its own service account. The only exception is failover clustering which shares services.
February 25, 2014 at 12:00 pm
Viewing 15 posts - 61 through 75 (of 138 total)