Viewing 15 posts - 946 through 960 (of 9,643 total)
80 is the default port for IIS so maybe that's why it was deleting the 80. It may have been failing because you have something else running on port...
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:25 pm
You can setup SQL Server to use SSL for connections. I would think that this would be the best way. Otherwise I think you'd have to do some...
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:23 pm
I believe, although not positive, you can reset your encryption key and then you just have to go back in and reset the credentials for your data sources, not recreate...
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:14 pm
Can you ping the SQL server from the command prompt?
Can you connect using sqlcmd? From a command prompt like this:
sqlcmd -S [server name] -E
The -E is integrated security
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:10 pm
Is this the transmission queue or the receiving queue?
It sounds like your process isn't ending conversations.
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:06 pm
Most of the meetings I attend I would categorize as "Meeting Badly". There is usually a good reason and a need for the meeting, but the meetings are not...
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 23, 2014 at 7:16 am
You can try to identify the queries that are causing hashes and sorts and tune them. There may be query and/or index changes you can make to reduce hashes...
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 19, 2014 at 7:52 am
SQLRNNR (6/18/2014)
Sean Lange (6/18/2014)
Argh!!! Why do some people around here consider me to be their own private consultant. They send me a PM with a vague description of something...
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 18, 2014 at 1:44 pm
waseemshaikh345 (6/18/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
June 18, 2014 at 12:32 pm
Sean Lange (6/18/2014)
Bah. This is yet another duplicate post. This one has several responses already.http://www.sqlservercentral.com/Forums/Topic1583131-150-1.aspx
Well that's a pisser. Especially since my answer is using a method the OP says...
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 18, 2014 at 11:13 am
I'd use a query something like this:
SELECT
size * 8 / 1024.0 -
FILEPROPERTY(database_files.name, 'SpaceUsed') * 8.0 / 1024 AS free_space_mb
FROM
...
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 18, 2014 at 11:07 am
I'm not superman at this, but it doesn't look like your server is under memory pressure based on what you have provided.
What is the trend for Page Life Expectancy (shows...
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 18, 2014 at 10:55 am
First I'd change the query to return the data differently and then use the tablix as a matrix to pivot the results in the report.
I'd change the query to something...
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 18, 2014 at 10:48 am
I think you are looking for something like this:
CREATE TRIGGER [dbo].[chat_trigger] ON [test].[dbo].[chat]
AFTER UPDATE
AS
BEGIN;
SET NOCOUNT ON;
...
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 18, 2014 at 10:33 am
This probably isn't ideal, but I think it could work. You could either add a second EE session or a second target to your existing EE session using 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
June 17, 2014 at 11:00 am
Viewing 15 posts - 946 through 960 (of 9,643 total)