Viewing 15 posts - 3,466 through 3,480 (of 4,272 total)
Michael Valentine Jones (9/23/2009)
Elliott W (9/23/2009)
You could create a view that assembles the fields either Jack's way or Michaels's way..CEWII
If the table is big, and you need good performance on...
September 23, 2009 at 2:57 pm
csalazar-607991 (9/23/2009)
DECLARE @Consulta VARCHAR(MAX)
--Ruta del documento
DECLARE @Ruta VARCHAR(MAX)
--Ruta del documento
SET @Ruta = 'C:\BKP\ImagenesBackup_' + CONVERT(VARCHAR(11),@Fecha) + '_.xml'
--Consulta
SET @Consulta = 'EXEC xp_cmdshell ''bcp "SELECT CodigoCaso,CONVERT(XML,REPLACE(REPLACE(REPLACE(CAST(Imagenes AS VARCHAR(MAX)), CHAR(9),''''''''), CHAR(10),''''''''), CHAR(13),...
September 23, 2009 at 12:26 pm
I know this can work.. Also, yo might set DelayValidation to True for the package so that it re-validates at run-time instead of now..
CEWII
September 23, 2009 at 11:56 am
In reference to the compiled 30 times point..
I rarely compile the sproc without there being other than whitespace changes. I really like explicitly saying "this is the version I...
September 23, 2009 at 11:10 am
I'm really surprised by that, I have code that does exactly that and I have received the failure mail..
CEWII
September 23, 2009 at 11:05 am
My experience suggests it usually will, it will even abort the cmd.exe that called it.. There are very few cases it won't and all of them are execute process...
September 23, 2009 at 11:04 am
tiffanyjanetblack (9/23/2009)
on the SQLDEV box.
However, I am not sure that will solve my...
September 23, 2009 at 10:57 am
What is the command you are executing?
September 23, 2009 at 10:45 am
You could create a view that assembles the fields either Jack's way or Michaels's way..
CEWII
September 23, 2009 at 10:45 am
Silverfox (9/23/2009)
charipg (9/23/2009)
If you have a SQL 2000 DTS package, can you execute the package in QueryAnalyzer without having to use Enterprise Manager and without having to
right-click on the package?
You...
September 23, 2009 at 3:30 am
Unfortunately for you that all sounds about right.. If they can grant access then there is nothing to prevent them from granting access to themselves, therefore by default they...
September 23, 2009 at 3:25 am
Have you looked at a return value..
DECLARE @retval int
EXEC @retval = master.dbo.xp_sendmail ........
SELECT retval = @retval
CEWII
September 23, 2009 at 3:19 am
Gianluca Sartori (9/23/2009)
Jeff Moden always says it best!:-)
Well, I don't want to give him a big head.. But he has a good saying for this topic..
CEWII
September 23, 2009 at 2:22 am
I think Jeff Moden says it best..
Stop thinking ROW, start thinking COLUMN..
CEWII
September 23, 2009 at 1:59 am
Well what part isn't clear?
You can't use the easy way in Agent to run it, but you can use that to get most of the command line.
You need to find...
September 23, 2009 at 1:38 am
Viewing 15 posts - 3,466 through 3,480 (of 4,272 total)