SQL Database Concepts Question:
How to store pdf file in sql server?
Answer:
Create a column as type ‘blob’ in a table. Read the content of the file and save in ‘blob’ type column in a table.
Or store them in a folder and establish the pointer to link them in the database.
Or store them in a folder and establish the pointer to link them in the database.
Previous Question | Next Question |
Tell me what is the STUFF and how does it differ from the REPLACE function? | Tell me what is the order in which the SQL query is executed? |