Viewing 15 posts - 541 through 555 (of 9,643 total)
It sounds like you just need to re-work your grouping so that an entire work order is together. I'm assuming that you are using a tablix/table so you just...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 17, 2014 at 11:07 am
Typically you want to give the better hardware to the database server. Web servers can be scaled out while database servers have to scale up.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 17, 2014 at 10:54 am
If you have a foreign key defined on a column you cannot leave a value in the column that is not in the referenced table. Here are your options:
1....
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 17, 2014 at 6:32 am
If the server or SQL Agent is not running when the job is scheduled to run it will not run until the next scheduled time when the server/SQL Agent is...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 14, 2014 at 10:51 am
rodjkidd (11/13/2014)
As Jack mentioned the Summit, and about seeing me nearly every day, I had a quick look through the photos I took...Jack in community zone / teacher mode 😀
Rodders...
I...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 9:28 am
Wow, the thread has been quiet lately.
Had a great time at the PASS Summit last week where I got to see many threadizens. Ran into Rodders the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 8:48 am
SQL Guy 1 (11/13/2014)
zedtec (11/13/2014)
I have run a trace but no slow queries found (all running under 5...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 8:45 am
Truncating a table or deleting data from a table does not release space from to the operating system from the database file(s), if does make that space available for re-use...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 8:35 am
You can find the last SQL Server restart using sys.dm_os_sys_info and the sqlserver_start_time column.
Before you DROP any indexes you need to:
1. Save the create scripts off somewhere.
2. Check...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 8:23 am
zedtec (11/13/2014)
There are no slow running queries.
So if there are no slow running queries what is the definition of slow performance?
Are you collecting any metrics to determine what might be...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 8:12 am
zahid.nawaz (11/13/2014)
schemaName, tablename, indexname, fillfactor
dbo Items ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 7:56 am
PearlJammer1 (11/13/2014)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 7:37 am
That's the actual creation of the index. I believe the percent_complete column in sys.dm_exec_requests is updated for CREATE INDEX so you can monitor it using that. I use...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 7:34 am
zahid.nawaz (11/13/2014)
Corbett: what do u mean about to adjust fill factor? should it not be 80% of page?
You state that the pages are 80% full when you check fragmentation,...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 6:44 am
Eirikur Eiriksson (11/12/2014)
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_DATES') IS NOT NULL DROP...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
November 13, 2014 at 6:36 am
Viewing 15 posts - 541 through 555 (of 9,643 total)