Viewing 15 posts - 2,131 through 2,145 (of 13,469 total)
install sp_whoisactive on your server from this source:
http://sqlblog.com/blogs/adam_machanic/archive/2012/03/22/released-who-is-active-v11-11.aspx
when you run that command, it will return a clickable cell in SSMS for each current command , and that will open an...
December 31, 2014 at 12:24 pm
my guess is he wants to turn the output into multiple columns in order to save space; instead of one long three column list, he wants two columns of the...
December 31, 2014 at 10:35 am
do you have dbmail working already on your SQL2000 instance?
sending mail of any kind is going to have that as a prerequisite.
after that, i'd say it's a query in a...
December 31, 2014 at 8:26 am
I feel for you, locked into older versions that you have no control over.
Bending this process to your will, you are going to have boatloads of issues: varchar max didn't...
December 31, 2014 at 8:01 am
function parameters are not optional the way stored procedures are. All values must be passed, or the default placehodler must be used in it's place
you have to use the default...
December 30, 2014 at 1:28 pm
here's how i wold do it:
for an instance that i'm resetting or just deploying:
1. in the [source] Reporting Services Configuration Manager, export the encryption key from an instance i want...
December 30, 2014 at 1:22 pm
as others have implied, this is one of those basic items that a DBA handles.
very often, it's because you've got databases in FULL recovery mode that have had a...
December 30, 2014 at 1:11 pm
only if you are creating new instances; i think you'll have issues if you import an existing key over an pre-existing SSRS isntallation.
if you have, say five SSRS instances, and...
December 30, 2014 at 12:40 pm
lloks like you need yet another cumulative update?
https://support.microsoft.com/kb/2008286?wa=wsignin1.0
Error message when you use Database Mail after you apply a SQL Server service pack or cumulative update: "System.IndexOutOfRangeException: timeout"
Article translations
Article ID: 2008286...
December 29, 2014 at 12:19 pm
sending data to a file is an export.
SQL, natively, does not support file operations; it's always up to an external application, so you use an applciation to connect and save,...
December 29, 2014 at 11:56 am
i'm under the impression that the email is supposed to be bracketed, and semi colon delimited when multiple addresses are involved, like this:
"Nescio, Nomen" <nomen.nescio@noreply.com>;"The SQL Administrator" <admin@noreply.com>;
I'm guessing that...
December 24, 2014 at 6:28 am
i've had situations where my linked servers odbc drivers get locked up/doinked up in the past, i think related to open transactions in the distributed transaction coordinator,and the only thing...
December 22, 2014 at 12:07 pm
yes that is correct. you cna change the compatibiolity level at will, and it instantly, dynamically starts affecting the next query that it encounters.
In my experience, there's not much that...
December 19, 2014 at 1:37 pm
nope it's just a command, but remermber what it does:
all it does is limit queries that use that database to a follow a specific syntax/set of rules....it has nothing to...
December 19, 2014 at 1:28 pm
i can tell you it's an explicit error that someone coded to capture in your procedure, where someone is using the RAISERROR('some string',11,11).
as noted, read the proc and jump...
December 19, 2014 at 12:56 pm
Viewing 15 posts - 2,131 through 2,145 (of 13,469 total)