Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
nando321
Starting Member
1 Post |
Posted - 2014-02-20 : 04:52:13
|
Hey everyone, I'm having a little issue with the SQL Server Enterprise Management program. It crashes whenever I want to save changed data to a table, in this case I want to change an MD5 checking value. I mean, there's this table that when I change a value from "varbinary" to "vatchar" and then try to save the changes, it stops working, shuts down and don't save anything.The error it gives when I click "Depurate the program" before closing it, is: "An unhandled win32 exception ocurred in mmc.exe [2964]. Just-In-Time debugging this exception failed with the following error: No installed debugger has Just-In-Time debugging enabled. In Visual Studio, Just-In-Time debugging can be enabled from Tools\Options\Debugging\Just-In-Time." , maybe that gives you some more detail about the problem.Thanks in advance. |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2014-02-20 : 12:15:14
|
I would suggest running the command to make the change rather than letting the GUI do the work. Save the change script and run it in Query Analyer instead of in Enterprise Manager.Tara KizerSQL Server MVP since 2007http://weblogs.sqlteam.com/tarad/ |
|
|
TG
Master Smack Fu Yak Hacker
6065 Posts |
Posted - 2014-02-20 : 12:27:46
|
I would also be concerned with the varbinary data being implicitly converted to varchar. Do you know it will all convert as you want it?Be One with the OptimizerTG |
|
|
|
|
|