Viewing 15 posts - 916 through 930 (of 9,643 total)
mortonsoft (7/9/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
July 9, 2014 at 7:47 am
hmbtx (7/8/2014)
What do you mean by "SSC questions"?
Questions posted on SQLServerCentral
Could you provide me with some idea as to what the DBA would do during the day and why they...
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
July 8, 2014 at 11:55 am
Is there a SQL Agent job that runs at startup that creates the trace?
If the trace definition is still in sys.traces then the trace definition is somewhere.
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
July 8, 2014 at 11:46 am
It is in the default trace as an Object:Altered event with an object type of 16964 which is database. The default trace doesn't tell you that the alteration was...
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
July 8, 2014 at 11:40 am
There are a few things that would make this easier to help with:
1. Execution plans for each query
2. The code for dbo.fn_cti_convertardatetime
3. The schema for the tables...
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
July 8, 2014 at 11:19 am
In addition to what Lynn has shared, the answer depends on:
how good the DBA is at automating things
are you willing to put into place and pay for a third-party monitoring...
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
July 8, 2014 at 11:11 am
I agree with what Luis and Alan have already shared. Anything that requires ordering (the distinct and order by) can spill to tempdb.
Also logically your query 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
July 8, 2014 at 11:03 am
So, the first thing is that in this situation you absolutely want to set the Max Memory for the database engine, I can't recommend a value because I don't know...
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
July 7, 2014 at 10:33 am
I believe you can catch that error by wrapping the SP call within a TRY CATCH.
If you are dealing with a linked server you can also use sys.sp_testlinkedserver to 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
July 7, 2014 at 10:25 am
First off, I want to be clear that I haven't had to deal with this issue, but a quick search showed this page in BOL, http://technet.microsoft.com/en-us/library/ms152757(v=SQL.105).aspx which has this...
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
July 7, 2014 at 10:18 am
Looks like you want a CROSS JOIN.
I'd provide the code, but I think you'll get more by reading the link above and coding it yourself.
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
July 7, 2014 at 10:10 am
pwalter83 (7/4/2014)
I need a code for a split function that can also handle double quotes in values along with the usual commas. Could anyone please help in this regard ?
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
July 7, 2014 at 8:30 am
Can you share the Split code?
Have you verified that the split function is returning what you expect?
When you pass in a single value using the Split...
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
July 3, 2014 at 9:25 am
Michael Valentine Jones (7/3/2014)
GilaMonster (7/3/2014)
If that column is a date, then:
SELECT
dbclaimcnt, dbclaimentered
FROM
EPSClaimsUOA
WHERE
dbclaimentered...
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
July 3, 2014 at 8:38 am
Looking at the SP it looks like you were on the right track to fixing the issue with the dbo.Split() function. When passing multi-value parameters to an SP you...
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
July 3, 2014 at 8:22 am
Viewing 15 posts - 916 through 930 (of 9,643 total)