Viewing 15 posts - 5,896 through 5,910 (of 7,597 total)
TomThomson (7/25/2014)
Brandie Tarvin (7/23/2014)
July 25, 2014 at 12:15 pm
peter 67432 (7/25/2014)
When I try to run the scripts I get:
'Online index operations can only be performed in Enterprise edition of SQL Server.'
Is there a way to do...
July 25, 2014 at 8:28 am
Lynn Pettis (7/24/2014)
For example,...
July 24, 2014 at 4:13 pm
Lowell (7/24/2014)
SELECT * From myTable
INNER JOIN MyLinkedServer.SandBox.dbo.AnotherTable myAlias
ON MyTable.ID = MyAlias.ID
WHERE myAlias.CustomerID = 12
looks pretty simple, right? with a WHERE statement that specific, i'd expect very few rows, since how...
July 24, 2014 at 3:49 pm
mallikachowdhary 98955 (7/24/2014)
I have a issue regarding a query showing very late response on one server while it works perfectly on another.
I have a job defined in SQL server...
July 24, 2014 at 2:40 pm
>> and restricted the log size to 30mb <<
That seems a little low, given that you might have a situation where one transaction takes a while to complete. Would...
July 24, 2014 at 9:07 am
You simply must get some answers to accurately resolve this:
1) What is the recovery model for your database? Bulk-logged, Full or Simple?
2) If not simple, at what time(s) during...
July 23, 2014 at 2:27 pm
Igor Micev (7/23/2014)
ScottPletcher (7/23/2014)
July 23, 2014 at 1:16 pm
pdanes (7/23/2014)And to think, if I had answered that matchbook ad, I could be driving a truck for big wages...
And wishing you'd answered that matchbook ad for a technical school...
July 23, 2014 at 1:14 pm
N_Muller (7/23/2014)
July 23, 2014 at 12:37 pm
N_Muller (7/23/2014)
July 23, 2014 at 12:18 pm
If you're willing to push back against the myth that identity should be default clustering key, and base the clustering key(s) choice on data instead, you can change the bolded...
July 23, 2014 at 11:51 am
I suspect there's a better clustering key, rather than the "default" identity, that might clear up a lot of your performance issues. Getting the best clustering key(s) is the...
July 23, 2014 at 10:52 am
I'd definitely restore and use the backup before I deleted the original files.
But rather than detach and delete the files yourself, just do a DROP DATABASE, which would be a...
July 23, 2014 at 10:42 am
It seems you do indeed have the proper clustering key.
Next I'd look at the missing index stats from SQL. You may be able to cover a large % of...
July 23, 2014 at 10:37 am
Viewing 15 posts - 5,896 through 5,910 (of 7,597 total)