Viewing 15 posts - 4,396 through 4,410 (of 4,476 total)
If pinging by server name fails but by IP succeeds, the problem is most likely with name resolution. You can still try flushing DNS on your PC with:
ipconfig /flushdns
You can...
August 26, 2016 at 8:36 am
stuart.unitt 31789 (8/22/2016)
Does anyone know of a way to display...
August 25, 2016 at 11:17 am
If you can also connect using the FQDN then it's often a DNS issue.
You could try doing a DNS flush on your end and see if that helps.
Sue
August 25, 2016 at 10:49 am
Minnu (8/25/2016)
Cofigured Index maintenance Job in SQL Server.
alert mail from is getting like below.
Levercare Customer (Unify) – HHT <e-mail Address>
How to alter the text before email Address in SQL...
August 25, 2016 at 10:25 am
etl2016 (8/25/2016)
hi,as a non-DBA, can I lock an SQL Agent job (I created), so that no one else is able to execute it?
please let me know, thank you
You control access...
August 25, 2016 at 9:27 am
I think you want to look at the application name column that executes those, not just the text data. Filtering out based on what you see in the entire row...
August 25, 2016 at 9:20 am
jshahan (8/24/2016)
August 24, 2016 at 1:16 pm
EXEC sp_table_privileges
@table_name='MY_TABLE';
Returns zero rows
Several of the columns always return a value. Do you have select permissions for the schema MY_TABLE belongs to? That's the only thing I can...
August 24, 2016 at 1:01 pm
SELECT ID ,
Brand = STUFF(( SELECT',' + Brand
FROM YourTable AS P2
WHERE P2.ID = P1.ID
ORDER BY Brand
FOR XMLPATH('')
), 1, 1, '')
FROM YourTable AS P1
Group by ID;
August 24, 2016 at 12:30 pm
You keep changing the tables and don't provide any DDL which makes it difficult.
If you have one table with ID and Brand, one way to do a stuff for...
August 24, 2016 at 11:34 am
Error : Cannot generate SSPI context
Can someone help on this , what may be the cause of this and how to resolve.
It can be caused by a lot of...
August 24, 2016 at 11:12 am
inevercheckthis2002 (8/23/2016)
AFAIK, there have been no permissions set at the...
August 23, 2016 at 7:52 am
MS explains it in this article:
https://technet.microsoft.com/en-us/library/ms190203(v=sql.105).aspx
You'd want to check the link to Operations That Can Be Minimally logged.
Sue
August 22, 2016 at 3:33 pm
You want to first understand why the log grew to that size - Do you know why? Are you using CDC, replication, have a long running transaction or any...
August 22, 2016 at 3:26 pm
gfx99ne (8/19/2016)
Hi,I'm trying to configure Reporting server. I've created Report Manager URL, but when i click link, it gives me blank page. What am I doing wrong please??
I would...
August 22, 2016 at 12:14 pm
Viewing 15 posts - 4,396 through 4,410 (of 4,476 total)