Viewing 15 posts - 931 through 945 (of 9,643 total)
Another often used solution to something like this is to have a calendar table with a schema similar to this:
CREATE TABLE dbo.calendar
(
theDate...
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:16 am
I think we need more details to be able to provide any kind of help.
If I understand correctly you have a package variable (in the parent package?) the is being...
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:09 am
Duplicate post. Please put answers in this thread, http://www.sqlservercentral.com/Forums/Topic1588898-3411-1.aspx
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:02 am
Have you put on a server-side trace or extended events session that captures the query and metrics like reads, cpu, duration for it?
Have you verified that statistics are up to...
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:01 am
I'm not a Service Broker expert, but essentially what you are doing is creating a queue by putting that data in another database. Service Broker may help with 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
July 2, 2014 at 7:40 am
It makes sense that the EXISTS query would return fewer rows. When using JOIN or CROSS APPLY you are going to get the order information for each order detail...
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 2, 2014 at 7:29 am
the second query might have fewer scans, but it also has more reads, 75 vs. 12, so the first query appears to be doing less IO. Both are doing...
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 1, 2014 at 10:40 am
A trigger like this should work:
CREATE TRIGGER K2K01.dbo.InsertCustomerInsertAction ON K2K01.dbo.cust
FOR INSERT
AS
BEGIN;
IF @@rowcount = 0
BEGIN;
...
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 1, 2014 at 10:22 am
harsimranjeetsinghwasson (6/30/2014)
Hi Jack,Does it support Express Edition ?
And does a single certificate ,which is being used for web server earlier i.e. https,
can be used sql server even?
Yes it 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 1, 2014 at 6:21 am
harsimranjeetsinghwasson (6/26/2014)
Will Simple Connection establishment in package is sufficient or need...
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
June 26, 2014 at 6:40 am
Your model database is corrupt so the SQL server instance can't start. You need to rebuild the model database. If you don't have good backups of master, model,...
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
June 26, 2014 at 6:29 am
harsimranjeetsinghwasson (6/25/2014)
Will TDE(Transparent Data Encryption) in sqlserver Help this ?
No, TDE only protects that data at rest (on disk). Once the data is read into the buffer pool it...
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
June 26, 2014 at 6:21 am
murnilim9 (6/25/2014)
How do I check that it has not "End Conversation"
Would you guide me on this?
It is not me the developer though...
Thanks so much...
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
June 26, 2014 at 6:20 am
There aren't major changes to the BI suite between 2008 R2 and 2012. The biggest changes are in SSIS with little in SSRS. I'm not sure about SSAS...
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
June 25, 2014 at 2:43 pm
I'd rebuild the indexes before I did a shrink as you might shrink below what you need for the rebuild and then the rebuild will take longer due to a...
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
June 25, 2014 at 2:41 pm
Viewing 15 posts - 931 through 945 (of 9,643 total)