Viewing 15 posts - 3,631 through 3,645 (of 4,272 total)
I believe John is right on with his comments.
CEWII
September 10, 2009 at 12:18 pm
I can tell you without resevation that it does not use either xp_sendmail or sp_send_dbmail. If you are still using xp_sendmail I STRONGLY recommend moving to DB Mail if...
September 10, 2009 at 12:16 pm
Right, extended stored procedures are not coded in T-SQL, they are C/C++ code in a DLL and therefore as SilverFox has commented there is no T-SQL. I too would...
September 10, 2009 at 9:38 am
I'm not familiar with any way to do this. You don't have much control over the email portion and even from the tables I haven't seen a way to...
September 10, 2009 at 8:08 am
I got to admit this is cleaner that your solution. But I would do it ENTIRELY different. I would use SSIS to loop through the list. It...
September 9, 2009 at 9:14 pm
Drop the index, leave the view. Don't rebuild the index..
If the query using the view makes an explicit reference to the index using hints then and only then will...
September 9, 2009 at 2:39 pm
Ok, then you have a problem. Because xp_cmdshell never returns the script can NOT go on to the next items until it comes back.
The statements that follow the xp_cmdshell,...
September 9, 2009 at 2:36 pm
If the schedule is set to allow from midnight to midnight every 15 minutes with today as the start date then at the next quarter hour it should run. ...
September 9, 2009 at 2:00 pm
SET NOCOUNT ON
DECLARE @Domain varchar(30)
CREATE TABLE #cmdshelloutput ( outtext varchar(255) )
INSERT #cmdshelloutput EXEC master.dbo.xp_cmdshell 'SET'
SELECT @Domain = RIGHT(outtext, LEN( outtext ) - 11 )
FROM #cmdshelloutput
WHERE ...
September 9, 2009 at 1:56 pm
I would suggest looking into the db_dtsadmin, db_dtsltduser, and db_dtsoperator roles in the MSDB database.
Also from BOL
SQL Server 2005 Books Online (November 2008)
Integration Services Roles
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/extran9/html/9702e90c-fada-4978-a473-1b1423017d80.htm
Updated:...
September 9, 2009 at 1:45 pm
emily (9/9/2009)
>>1. What other statements?
Insert and updates
>>2. What is the determiner to move on?
Simply that the xp_cmdShell command was executed
<<3. Is this all in a...
September 9, 2009 at 1:30 pm
Sorry, never used the term reboot for anything but the machine..
CEWII
September 9, 2009 at 1:17 pm
Then you might as well drop the index on that table because it won't be used except if it is explicitly referenced.. SQL 2005 Std can create indexed views...
September 9, 2009 at 1:10 pm
I don't know, I think we generally agree. The only real question is how far MA can go outside their boundries and who they can force to comply. ...
September 9, 2009 at 1:08 pm
emily (9/9/2009)
Elliott W (9/9/2009)
September 9, 2009 at 1:04 pm
Viewing 15 posts - 3,631 through 3,645 (of 4,272 total)