Welcome to BARMAGY Sign in | Join | Help

Analyze it

Business Intelligence, Data wharehousing and Microsoft SQL Server services for BI Impelmentation SSIS , SSAS , SSRS

<August 2008>
SuMoTuWeThFrSa
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456

Navigation

Syndication

SQL Server 2008 RTM
The wait is over. SQL Server 2008 has been released and is ready to deliver
TechNet Plus subscribers can find RTM versions now available for download.

posted Thursday, August 07, 2008 9:42 AM by wagdyIshac | 0 Comments

Migrating large amount of data with nvarchar(MAX) in SSIS
Be aware when you deal with the nvarchar(MAX) as a source data for the SSIS OLE data Source as in the large number of data the temp files couldn't be generated so the migration fails. i had a case with 48 columns nvarchar(MAX) with 45000 rows and the migration failed. but converting them to 50 length it worked...!!!

posted Thursday, July 10, 2008 12:17 PM by wagdyIshac | 0 Comments

Get list of hte Sevices that runs on the SQL Engine
instead of profiling if you want to know just the services that runs currently on the Engine. choose the database master and run in the query editor " exec sp_who" this will list for you all the running activities with it's status on the server now

posted Monday, June 23, 2008 8:22 AM by wagdyIshac | 0 Comments

RC0 Version of SQL Server 2008 Available
Finally,
The SQL Server 2008 is RC0 but available so far only on the MSDN and technet subscribers
http://reddevnews.com/news/article.aspx?editorialsid=9946

posted Thursday, June 12, 2008 10:36 AM by wagdyIshac | 0 Comments

Top 10 SQL Server Integration Services (SSIS)

well, SSIS is the most critical stage in developing a Business Intelligence Project. so tips is always important. have a look on this

http://searchsqlserver.techtarget.com/generic/0,295582,sid87_gci1282913,00.html

posted Sunday, May 04, 2008 9:46 AM by wagdyIshac | 0 Comments

Truncation VS Deletion

when you try to empty the whole table especialy in SSIS  DON'T use delete from [Table] cause it takes time untill the query runs and delete the whole table instead use Truncate table [table] cause truncation empty the table at once

posted Tuesday, April 15, 2008 11:27 AM by wagdyIshac | 0 Comments

SQL Server 2008 code name "Katmai" Awaitting CTP2

Jun 8th microsoft CTPed SQL Server Katmai, with main feature of Polices and how to enforce polices on databases.

we are waitting for CTP2 will be released this month.

posted Monday, July 02, 2007 10:36 AM by wagdyIshac | 0 Comments