Viewing 15 posts - 136 through 150 (of 599 total)
Sure. It's a great tool - we use it all the time to track down issues, etc.
November 15, 2010 at 7:16 am
no problem. Gotta support our sponsors. Besides, I LOVE this tool. Saves a lot of headaches.
November 12, 2010 at 12:26 pm
Dangerous, getting this type of thing to a manager.
Only semi-tested, but this should get you there:
SELECT DISTINCT
OBJECT_NAME(c.object_id) AS thetable
...
November 12, 2010 at 11:20 am
Sure you can using sys.columns, sys.index_columns, etc.
But I'm curious - do you have a purpose for doing this or just curiosity?
November 12, 2010 at 11:08 am
You can also use Red Gate's SQL Search tool.
November 12, 2010 at 10:49 am
Playing off your ideas and the things bouncing around in my head, I've vome up with the following which gets me what I want:
SELECToq.*
FROM OPENQUERY(DW,'
SELECTDISTINCT
''I'' as TYPCOD,...
November 5, 2010 at 1:19 pm
Why in the world do you need to do this with two different queries when all you're doing is mashing them back together?
If you need to know which ones are...
November 5, 2010 at 1:10 pm
I have read-only access to the DB2 data store and that's not going to change so no hope of writing a temp table there.
Cannot use a standard/vanilla linked server query,...
November 4, 2010 at 2:10 pm
Thanks, mazzz. That's the kind of info I'm looking for.
November 2, 2010 at 10:46 am
Hey Gary, your post came up when I was searching on SCOM. We're looking into evaluating it as a SQL Server monitoring tool as well. I do want...
November 2, 2010 at 10:10 am
Hey Grant, I know this one's old but it's one of the first ones that comes up on a SCOM search. Did you get this implemented? If so,...
November 2, 2010 at 10:03 am
Brandie,
If I were writing this from scratch with control of the DDL, etc. I would most definitely be writing this as an SSIS package with no dynamic SQL. ...
October 26, 2010 at 7:32 am
Pitcher:
Yes, it's a linked server. Query runs on Prod to gather the data, inserts into Arch via linked server.
Yes, it's dynamic SQL for the inserts. Terribly ugly I...
October 25, 2010 at 1:07 pm
Brandie, the initial set is 500 cases, but with those cases there are 29 tables and in those tables there are at times millions of entries / table. Granted,...
October 25, 2010 at 12:28 pm
Brandie:
Correct, before the switch to a batch process we did not have tempdb issues.
There are possibly some reports running (originating on Arch server but querying Prod - that's changing) but...
October 25, 2010 at 10:48 am
Viewing 15 posts - 136 through 150 (of 599 total)