Viewing 15 posts - 1,456 through 1,470 (of 7,498 total)
Whatever you do, make sure you start with the appropriate upgrade adviser !
SQLua.exe can be found in the feature packs.
February 3, 2012 at 8:07 am
keep in mind the sql server errorlog file is archived ( to errorlog.1 ) every time sqlserver starts or one performs a cycle errolog.
Chances are you only got to see...
February 2, 2012 at 11:58 am
- did you disable connection pooling ?
- Could it be your tools are using an "auto refresh feature" every 10 seconds ?
e.g. like used with "job activity monitor" ?
February 2, 2012 at 12:20 am
maybe this article can shed some light on the topic for you ...
http://www.brentozar.com/archive/2011/12/consulting-lines-pilot-dog/
February 2, 2012 at 12:17 am
no ehum yes, well maybe.
Quorum with mirroring means it can connect any of the mirroring members to each other or one of the members to the witness.
Have a look...
February 2, 2012 at 12:04 am
Take control over your proprietary error codes and declare your own messages ( and alerts if needed )
Have a look at sp_addmessage in BOL:
exec sp_addmessage [ @msgnum = ] msg_id...
February 1, 2012 at 11:51 pm
Jeff Moden (1/30/2012)
GSquared (1/30/2012)
January 31, 2012 at 8:34 am
here's another free sqlagent job visualizers 😉
http://www.idera.com/Free-Tools/SQL-job-manager/
maybe it can get you started on our quest...
January 30, 2012 at 1:53 pm
To elaborate a bit on Pauls script ...
SELECT
t1.id,
t1.value as Val1 , 't1' as source
FROM @test-2 AS t1
WHERE
...
January 27, 2012 at 7:12 am
just to add to the previous comment...
The order by, used with a union(all) select can only perform its operation on a column that occurs in the select list !
January 27, 2012 at 5:26 am
both will be equal;
However, I always advise to use the join syntax because it nicely distinguishes join conditions and filter conditions.
This is especially interesting with outer joins.
BTW as of...
January 16, 2012 at 12:07 am
another reason to switch to a more intelligent solution in stead of a maintenance plan.
there are a couple of alternatives at SSC.
Ola Hallengren has a very nice one at http://ola.hallengren.com/
January 12, 2012 at 12:48 pm
What about servername, instance name for your standalone server ?
Are they equal to the original servername ?
If not, you may have some issues with msdb (sqlagent), and master sysservers
have a...
January 12, 2012 at 12:34 pm
with numeric data, leading zeroes do not play a significant role, so don't worry.
If you want leading zeroes in your result, handle that in your presentation layer (gui, report, ...)
January 12, 2012 at 12:28 pm
Viewing 15 posts - 1,456 through 1,470 (of 7,498 total)