HOW to VIEW and COPY the Binary Data in a selected Row and Column of a Table
1. Anyone can tell me on how to copy the whole binary data string of a particular column and row?
2. How to replace or edit the old binary data in a table to a recent binary data which i want.
Purpose: I want to copy the binary data of a specific charIDX to another table.
Re: HOW to VIEW and COPY the Binary Data in a selected Row and Column of a Table
I don't know what you want to copy, you didn't specified the specific column or table.
well i will give you a tip
// to select the binary data
Use [Database]
Select Data from Table
where CharacterIdx = ?
// update the binary
Use [Database]
Update dbo.table
SET Data = ?
Where CharacterIdx = ?
Re: HOW to VIEW and COPY the Binary Data in a selected Row and Column of a Table
@Drav3n
To make more specific on my previous post are the ff:
1. I want to get the whole binary data of table column "Data" where CharacterIdx #8 for example
2. I want to update the data in table column "InventoryData" where Idx #1 for example using the data from "Data" column of other table
I think you get now what i mean sir. Thnks
Re: HOW to VIEW and COPY the Binary Data in a selected Row and Column of a Table