Search results
14 wrz 2009 · We now have to create a pdf file. I was planning on using pdfsharp/migradoc to do it, but then we'd have to create document and time its readiness with sql server data state and mail state. It'd be nice if the db could handle everything.
2 cze 2021 · Using the new SQL scalar function GENERATE_PDF to create PDF in the IFS from spool files
12 wrz 2022 · Learn how to build conditional logic when writing SQL code using IF, BEGIN, END, ELSE, and ELSEIF logic.
7 maj 2013 · How to render PDF documents using SQL CLR. Also a good introduction on creating SQL CLR functions.
16 kwi 2018 · Reading a PDF blob with PL/SQL and SQL. 2018-04-16 Sean D. Stuber 2 Comments. This is another article inspired by a recent request. That is, given a PDF file with tabular data, could I extract the data into a more human-usable format? Yes, it is possible but it requires multiple steps and does come with some caveats.
1 cze 2021 · Standard SQL Functions Cheat Sheet. TEXT FUNCTIONS. CONCATENATION. Use the || operator to concatenate two strings: SELECT 'Hi ' || 'there!'; -- result: Hi there! Remember that you can concatenate only character strings using ||. Use this trick for numbers: SELECT '' || 4 || 2; -- result: 42.
10 sty 2012 · It has to do with the Normal Form for the SQL language. IF statements can, by definition, only take a single SQL statement. However, there is a special kind of SQL statement which can contain multiple SQL statements, the BEGIN-END block.