Viewing 15 posts - 946 through 960 (of 9,641 total)
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...
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
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.
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...
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...
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...
June 18, 2014 at 1:44 pm
waseemshaikh345 (6/18/2014)
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...
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
...
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...
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...
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;
...
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...
June 17, 2014 at 11:00 am
Wow, I'm amazed at all the folks that have dishwashers at work. The only time I've ever had one was when I was working from home full-time.
My current job...
June 16, 2014 at 6:59 am
Does the file already exist in the remote location?
June 13, 2014 at 10:59 am
Viewing 15 posts - 946 through 960 (of 9,641 total)