Viewing 15 posts - 211 through 225 (of 241 total)
Reported the post above as Spam. Don't use brain dumps you will be caught out in the real world. Post now deleted
Get a copy of SQL Development edition onto your...
January 4, 2016 at 8:53 am
Jeff - thank you for taking the time to do a detailed analysis of my solution. Much appreciated! It is always good when something started out as a bit of...
December 31, 2015 at 2:20 am
Thought I would have a go at your challenge Jeff, just for fun as it is quiet in work.
Looking forward to any critiques - not sure if I went...
December 30, 2015 at 4:25 am
You will be better asking this question on an Excel / VBA forum but based on the limited section of code it is missing TableDestination and TableName.
December 30, 2015 at 3:06 am
Have you changed the account the service uses? The log on as a service permission should be granted to the service account during the setup of the instance. Double check...
December 30, 2015 at 2:58 am
In order to get the best answer you should post the table structure, sample data and what data you expect to get in return, but see below - does this...
December 27, 2015 at 11:12 am
You might be better asking this question on a PHP forum.
Are you using MS SQL Server or MySQL?
If you are using MS SQL Server then the following will convert a...
December 23, 2015 at 3:46 am
If you are querying it from other databases with a different collation or vise versa you may need to specify a collation in the join or predicates to resolve any...
December 22, 2015 at 6:45 am
The % sign returns the remainder of a division. So 10 % 3 = 1
December 22, 2015 at 6:03 am
It will be to do with MSDTC.
Check that the MSDTC service is running on all machines involved in the transaction i.e. if you are running the package from your...
December 22, 2015 at 5:14 am
Do you get any output from the below while the ssis package is hanging?
SELECT * FROM sys.dm_exec_requests where blocking_session_id <>0
If the transactions are implemented manually does it work? (Add...
December 22, 2015 at 3:41 am
Do you have any data flow tasks in the package?
December 22, 2015 at 1:40 am
Here is a way to send data via an html table in the body of an email
declare@Body nvarchar(max)
,@Query nvarchar(max);
declare@tabtable (
Column1 intnot null
,Column2 nvarchar(20)not null);
insert into
December 22, 2015 at 1:28 am
So you aren't seeing any locks when using sp_who2 when the package is hanging?
If you change the transaction option for the package to be not Supported does the package run...
December 21, 2015 at 8:55 am
Check to see that the MSDTC service is started on the servers that the SSIS package is running on/against.
Does it fail after a period of time? If so...
December 21, 2015 at 6:27 am
Viewing 15 posts - 211 through 225 (of 241 total)