Viewing 15 posts - 1,456 through 1,470 (of 7,504 total)
CraigIW (2/6/2012)
ALZDBA (2/6/2012)
- Can your need be solved using backup ( of prod ) and restore ( to report env ) ?
( one should...
February 6, 2012 at 7:38 am
as always, it depends 😉
- Can your need be solved using backup ( of prod ) and restore ( to report env ) ?
( one should be able...
February 6, 2012 at 6:47 am
EdVassie (2/6/2012)
February 6, 2012 at 5:14 am
Question to pose is:
- Why would you ignore a duplicate key ?
- is case sensitivity needed ? ( does it matter ? ) ( and would you want it only...
February 6, 2012 at 5:03 am
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
Viewing 15 posts - 1,456 through 1,470 (of 7,504 total)