Click here to Skip to main content
15,883,705 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need a suggestion Pin
OriginalGriff14-Jul-21 19:03
mveOriginalGriff14-Jul-21 19:03 
GeneralRe: Need a suggestion Pin
simpledeveloper15-Jul-21 22:03
simpledeveloper15-Jul-21 22:03 
GeneralRe: Need a suggestion Pin
Richard Deeming15-Jul-21 22:38
mveRichard Deeming15-Jul-21 22:38 
AnswerRe: Need a suggestion Pin
Gerry Schmitz14-Jul-21 19:11
mveGerry Schmitz14-Jul-21 19:11 
AnswerRe: Need a suggestion Pin
Eddy Vluggen15-Jul-21 9:20
professionalEddy Vluggen15-Jul-21 9:20 
AnswerRe: Need a suggestion Pin
Mycroft Holmes15-Jul-21 12:37
professionalMycroft Holmes15-Jul-21 12:37 
GeneralRe: Need a suggestion Pin
simpledeveloper15-Jul-21 21:55
simpledeveloper15-Jul-21 21:55 
AnswerRe: Need a suggestion Pin
jschell17-Jul-21 10:26
jschell17-Jul-21 10:26 
simpledeveloper wrote:
Hi I have a table which has 100s of 1000s of records

simpledeveloper wrote:
huge json string.


Excel limits.

32k maximum size for a cell
1,048,576 maximum rows
16,384 columns

Excel specifications and limits - Excel[^]

If you already have a 200,000 rows then a reasonable growth estimate would mean your solution would need to support 2,000,000 rows. And that is not going happen in excel.

You didn't define 'huge' nor what is in that json has but see the cell size limit and column limit. Again if you are already pushing those then growth would suggest you will exceed it.


simpledeveloper wrote:
So he wanted me to write a Service to convert that Json string into Excel document,


Is this a one time job? On demand? Once a day? Once a minute? That will impact what is reasonable in terms of how long you your job can take processing this.


simpledeveloper wrote:
convert that Json string into Excel document


Is that the only problem that it is json? Basically the acronym 'ETL' exists for this very thing. So why not do the following
1. Create another database, do not try to do this in the existing one.
2. Create a job that incrementally processes the rows and flattens outs the data into the new database.
3. Then the other person uses that database, with the data nicely parsed out to do what they want.

How to flatten it out? Well if the data is nice and stable then you could just create a table with the columns named appropriately.

If however the json is includes lots of depth and is dynamic then you will need to create a metadata solution such as a table that stores a name, and type, and perhaps another table with values. The types allows you to handle arrays and other embedded types (circular). Keeping in mind that this problem is one you would have needed to deal with an the Excel idea any ways.

This also allows the data to be kept up to date. Then it is up to them, not you, how often to actually pull the data.
Questionc# / wpf/ xaml changing culture (language) at runtime Pin
Maximilien14-Jul-21 2:55
Maximilien14-Jul-21 2:55 
AnswerRe: c# / wpf/ xaml changing culture (language) at runtime Pin
Richard Deeming14-Jul-21 3:01
mveRichard Deeming14-Jul-21 3:01 
GeneralRe: c# / wpf/ xaml changing culture (language) at runtime Pin
Maximilien14-Jul-21 4:38
Maximilien14-Jul-21 4:38 
GeneralRe: c# / wpf/ xaml changing culture (language) at runtime Pin
Richard Deeming14-Jul-21 4:48
mveRichard Deeming14-Jul-21 4:48 
GeneralRe: c# / wpf/ xaml changing culture (language) at runtime Pin
Maximilien14-Jul-21 9:35
Maximilien14-Jul-21 9:35 
GeneralRe: c# / wpf/ xaml changing culture (language) at runtime Pin
Richard Deeming14-Jul-21 21:32
mveRichard Deeming14-Jul-21 21:32 
GeneralRe: c# / wpf/ xaml changing culture (language) at runtime Pin
Maximilien15-Jul-21 1:11
Maximilien15-Jul-21 1:11 
AnswerRe: c# / wpf/ xaml changing culture (language) at runtime Pin
Gerry Schmitz14-Jul-21 5:20
mveGerry Schmitz14-Jul-21 5:20 
QuestionN-Tier best practices when using in MVC application Pin
Member 949196213-Jul-21 13:33
Member 949196213-Jul-21 13:33 
AnswerRe: N-Tier best practices when using in MVC application Pin
Gerry Schmitz14-Jul-21 5:14
mveGerry Schmitz14-Jul-21 5:14 
QuestionExperiencing Memory Leak and unable to Handle it with GC.Collect() Pin
rahulgorai13-Jul-21 7:35
rahulgorai13-Jul-21 7:35 
AnswerRe: Experiencing Memory Leak and unable to Handle it with GC.Collect() Pin
Dave Kreskowiak13-Jul-21 9:41
mveDave Kreskowiak13-Jul-21 9:41 
GeneralRe: Experiencing Memory Leak and unable to Handle it with GC.Collect() Pin
rahulgorai14-Jul-21 2:03
rahulgorai14-Jul-21 2:03 
GeneralRe: Experiencing Memory Leak and unable to Handle it with GC.Collect() Pin
Dave Kreskowiak14-Jul-21 4:16
mveDave Kreskowiak14-Jul-21 4:16 
GeneralRe: Experiencing Memory Leak and unable to Handle it with GC.Collect() Pin
jschell17-Jul-21 10:37
jschell17-Jul-21 10:37 
Question.Tag File Pin
f6112-Jul-21 19:44
f6112-Jul-21 19:44 
AnswerRe: .Tag File Pin
Victor Nijegorodov12-Jul-21 20:38
Victor Nijegorodov12-Jul-21 20:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.