Viewing 15 posts - 5,266 through 5,280 (of 6,400 total)
as Database mail uses SMTP the default is port 25, but your exchange admins can change it so you are best speaking to them
April 24, 2012 at 1:29 am
can you post the DDL statements for all objects involved, tables procedures triggers etc
April 24, 2012 at 1:23 am
would seem like you need to use ranking functions http://msdn.microsoft.com/en-us/library/ms189798.aspx
April 24, 2012 at 1:02 am
The SSMS tool kit will do that for you, it assigns each server its own colour so will take some configuring to set the colours of each server.
April 23, 2012 at 7:00 am
you could use the FORMAT command in an expression on the field
FORMAT(Fields!DateField.Value, "dd-MMM-yy")
April 23, 2012 at 2:45 am
Thanks Phil, I will add a comment once I have done my morning checks.
April 23, 2012 at 2:22 am
Its a possibility but its extracted from SalesForce using ApexDataLoader and I have yet to find a way to change it from comma delimited to something else, but will keep...
April 23, 2012 at 2:07 am
Howard, the flat file source does have " as the text qualifier its just that one column which it wont remove the " from. Also thanks for the...
April 23, 2012 at 1:53 am
deebabat (4/20/2012)
MarkusB (4/20/2012)
deebabat (4/19/2012)
insert into tblDownload_Import
(Description) values ('error: ' + ERROR_Number() + ' msg: ' + ...
April 20, 2012 at 7:51 am
do you or the agent account have the correct Windows Server access rights to query WMI data
April 20, 2012 at 7:42 am
anthony.green (4/20/2012)
SkyBox (4/20/2012)
anthony.green (4/20/2012)
SkyBox (4/19/2012)
April 20, 2012 at 6:11 am
SkyBox (4/20/2012)
anthony.green (4/20/2012)
SkyBox (4/19/2012)
April 20, 2012 at 5:54 am
from what I remember 0x80041003 is an insufficient permissions error, cant remember if its insufficient at the agent level to run the alert or to your account creating the alert.
one...
April 20, 2012 at 5:00 am
SkyBox (4/19/2012)
One of our systems (AX 2009) doesn't allow "included columns" on indexes, so with that in mind, I want be sure that those indexes aren't covering too many columns.
Thats...
April 20, 2012 at 3:59 am
one way would be to wrap the size in a case statement then group by the case statement again
select
.......,
case when size >=1 <=10 then 1
else when size >=11 <=20 then...
April 20, 2012 at 3:32 am
Viewing 15 posts - 5,266 through 5,280 (of 6,400 total)