Questions tagged [rpt]
56 questions
65
votes
8 answers
Convert SSMS .rpt output file to .txt/.csv
I want to export my big SSMS (SQL Server Management Studio) query result (2.5m lines, 9 fields) as .csv or comma-delimited .txt (with headings). (MS SQL Server 2005 Management Studio.)
So that I can then either read it line-by-line into VBA program…

Relaxed1
- 983
- 3
- 13
- 21
10
votes
1 answer
Partial JWT token at token refresh
In a microservice architecture, we use JWT tokens from keycloak. Now we would like to get a second access token with less rights (less claims/ less roles). The use case is: the new access token should give its owner access to just one document in…

Philipp
- 115
- 9
4
votes
2 answers
Crystal report registery key permission error, with using crystalreportviewer in C#
In a C# Windows form project, I used "CrystalReportViewer" control to view ".rpt" files. It works correctly and loads rpt files correctly. But...
Unfortunately, in other systems, it's exe file encountered with this error:
Ether the Crystal Reports…

nabegheh95
- 195
- 3
- 19
3
votes
1 answer
Read rpt file content column by column in PHP
I have .rpt files and I need to read their data and then store the data in MYSQL Database. I tried the following solution:
$lines = file("aa.rpt");
echo '';
foreach ($lines as $line_num) {
$str = trim(htmlspecialchars($line_num));
…