需要帮忙 ..
我.DMP在我的数据库上导入一个文件,当我在SQL上编写我的impdp查询时,它返回此错误我不知道这个错误是什么
SP2-0734:未知命令开头"impdp ..."其余行被忽略
我的命令是
impdp user/pass directory=DUMPS dumpfile=filedumpname.dmp logfile=name.log full=yes
Run Code Online (Sandbox Code Playgroud) 我正在制作一个将hexa值转换为二进制值的程序.好吧,我确实做到了,但现在我在我的程序的第二部分面临一个问题
现在我想显示我的二进制文件中存在的"1"的位置,例如我的二进制文件
0100100101101
它应该告诉我
2,5,8,10,11,13
private void button1_Click(object sender, EventArgs e)
{
string temp = textBox1.Text;
string binary = ConvertTOBinary(temp);
} // This is the code of my Button
public string ConvertTOBinary(string temp)
{
string binaryval = "";
binaryval = Convert.ToString(Convert.ToInt64(temp, 16), 2);
MessageBox.Show(binaryval);
return binaryval;
}
Run Code Online (Sandbox Code Playgroud)
我在C#中制作!!