Viewing 15 posts - 6,511 through 6,525 (of 11,678 total)
It means your database was once 134 GB big, but now it contains only for 10GB on data.
When data is deleted, space isn't automatically released. You can shrink your database...
August 27, 2012 at 3:52 am
I guess you are using SSIS?
Take the 2007 option, normally it should work.
August 27, 2012 at 3:47 am
dwain.c (8/27/2012)
Koen Verbeeck (8/27/2012)
That's because in SQL Server, we use set-based queries instead of cursors.Alas, this is wishful thinking. I wish everybody did. 🙂
Ssshhttt, I'm trying to brainwash here...
August 27, 2012 at 3:09 am
How did you set the default for MaxLoadMonth? Did you use a query?
August 27, 2012 at 1:45 am
Will the length ever be greater than 4000?
If not, you can just take DT_WSTR with a length of 4000.
Not great for package performance, but using a PIVOT isn't either 🙂
August 27, 2012 at 1:41 am
raghuldrag (8/27/2012)
is any other alter natives there ???
Maybe if you explain what you are trying to do?
August 27, 2012 at 1:32 am
To be completely correct: SQL Server 2008R2 needs .NET framework 3.5 sp1.
I'm not sure about the clients though.
August 27, 2012 at 1:31 am
Which environment are you working on?
A possibility is to use PivotTables in Excel, either based directly on the SQL relation engine, or on an SSAS cube or on a PowerPivot...
August 27, 2012 at 1:25 am
I don't think so.
That's because in SQL Server, we use set-based queries instead of cursors.
Cursors treat the data row by row, and are thus (usually) slower than set based manipulations.
August 27, 2012 at 1:23 am
ganeshkumar005 (8/24/2012)
August 24, 2012 at 7:14 am
What are you doing exactly in the Lookup component? Why does it have to load staging as well?
A lookup component should be able to give you the inserts and the...
August 24, 2012 at 12:00 am
The easiest solution would be executing the stored procedure in the OLE DB Source, but not storing the results in a temp table but sending them to the dataflow. That...
August 23, 2012 at 11:57 pm
shreenu.vasulu (8/23/2012)
user does not have permission to alter the 'TestCube' object, or the object does not exist.
Open Services, go to Analysis services--->right click on it --> Properties-->LogOn -->...
August 23, 2012 at 11:36 pm
Viewing 15 posts - 6,511 through 6,525 (of 11,678 total)