Viewing 10 posts - 1 through 10 (of 10 total)
I am using the same logic......dt_ntext has limit of 2gb
August 15, 2011 at 3:17 pm
How can i do that in ssis. Can you give me an example.
August 15, 2011 at 2:28 pm
IN my case i have to create this much xml data . My i am getting this error "XML operation resulted an XML data type exceeding 2GB in size. Operation...
August 14, 2011 at 8:52 pm
i am having the same problem when attaching database, did u figured it out..
December 23, 2009 at 3:27 pm
the simplest one ....
--create sample data set
declare
@table table (name varchar(100))
insert into @table values ('Apple'),('Melons'),('Orange'),('Mangoes')
--concattinate
declare @nsql nvarchar(max)
set @nsql = ''
select @nsql = @nsql+' '+ name
from @table
select @nsql
October 14, 2009 at 7:58 am
In source code find : TablixRowHierarchy
Under : that you will find following piece of code
TablixMember
KeepWithGroupAfter/KeepWithGroup
/TablixMember
Add 2 lines:
RepeatOnNewPagetrue/RepeatOnNewPage
KeepTogethertrue/KeepTogether>
Done
May 22, 2009 at 10:43 am
In source code find : TablixRowHierarchy
Under : that you will find following piece of code
1)
2) After
3)
Add 2 lines:
1) true
2) true
New Code :
1)
2) After
3)...
May 22, 2009 at 10:39 am
In source code find : TablixRowHierarchy
Under : that you will find following piece of code
After
Add 2 lines:
true
true
New Code :
After
true
true
Done
May 22, 2009 at 10:36 am
Viewing 10 posts - 1 through 10 (of 10 total)