Viewing 15 posts - 61 through 75 (of 98 total)
MIN MAX Memory settings, Just to make it clear.
October 26, 2012 at 11:24 am
I wasn't going to shrink the TEMPDB, I would never shrink a db in production especially a sys db.
I have queried the tables it seems that the 99% free reported...
October 8, 2012 at 12:54 pm
Ahh Might just work I have seen that done for the excel connection manager maybe I shouldn't be using XML Source and should use XML Task.
Thanks I'll try it on...
October 5, 2012 at 2:24 pm
Do i need to use the XML tasks in SSIS or Flat file tasks?
October 3, 2012 at 12:57 pm
The easiest way is to either set up a trigger to log delete actions or to set up SQL PROFILER to capture the activity on this table.
If you had a...
September 17, 2012 at 7:16 am
FOR 2008
USE 2008db;
GO
DBCC SHRINKFILE (<logical_logfilename>,5);
GO
For sql 2008
5- size you want to shrink to.
<logical_logfilename> run sp_helpdb.
August 30, 2012 at 3:40 am
USE database_name
GO
DBCC SHRINKFILE(2,1)
BACKUP LOG database_name WITH TRUNCATE_ONLY
...
August 30, 2012 at 3:36 am
Not for the destination table, has to be a table or view.
August 15, 2012 at 6:04 am
Almost there by following
http://www.packtpub.com/article/mysql-data-transfer-using-sql-server-integration-services-ssis
I can get the data to MYSQL but in have to create a table when creating the SSIS package. It doesn't recognise any of the...
August 15, 2012 at 2:07 am
August 14, 2012 at 8:46 am
Is this available for SQL 2008 as I can't get the connection to work.
When I type in servername,username and password. the initial catalog is greyed out.
Using VS 2008.
August 14, 2012 at 6:09 am
Thanks I will try that, I do need all destination tables to be visable.
Again Thanks.
August 14, 2012 at 2:22 am
No I used the ODBC version. I just read that I need my source to also use ADO.Net.
http://dbperf.wordpress.com/2010/07/23/sql-server-integration-services-2008-ssis-and-mysql/
When I try to map the MYSQL table I have to...
August 13, 2012 at 8:53 am
Viewing 15 posts - 61 through 75 (of 98 total)