Community

 
Jump Menu:
Post Reply
Page 45 of 46  •  Prev 1 ... 41 42 43 44 45 46 Next
Switch to Forum Live View Card Tracker (Beta 3.1)
4 months ago  ::  Jan 29, 2013 - 12:03PM #441
Specul8
Date Joined: Jul 18, 2011
Posts: 33
Hi DragonsWrath.

When you release the Gatecrash update, are you please able to fix Garruk Relentless / Garruk, The Veil-Cursed so the Quantity values update eachother (like Delver of secrets does with Insectile Aberration, for example).

If you have already sorted this, then thanks (I've updated the database manually in the past so they were linked, but I can't remember if I had to do it for RTR).

The changes are in the AllCardsBySet table, Special Column - skydrive.live.com/embed?cid=74C8FB119126...

Thanks
Quick Reply
Cancel
4 months ago  ::  Jan 29, 2013 - 4:02PM #442
handyman11
Date Joined: Jan 29, 2013
Posts: 3
In regards to anyone that is still having issues with the following error:

"There was a SQL Error while requesting the list of sets.
This error will not prevent the program from running, but
will restrict some Search settings to their default values.

This error is often caused by an unusually delayed response
from the database, which might happen if SQL wasnt running yet.
If so, you can restart the program and SQL should reply on-time
If not, this may be a symptom of more serious connectivity issues."

I was able to correct this issue by going into SQL Server 2005 (Management Studio) and writing the following script into a new Query window :

exec sp_configure 'user instances enabled', 1

Once you have executed the query above, write the following code:


Reconfigure


And Execute the code above.  Close SQL Server and open Card Tracker.
This is what worked for me..  Thanks

Quick Reply
Cancel
4 months ago  ::  Jan 29, 2013 - 4:58PM #443
DragonsWrath
Date Joined: Mar 19, 2007
Posts: 3,754
Update some time this weekend, I'm in the middle of some stuff, but I've got the update "done"

Just need to error-check some things, get the build done, etc.


Jan 29, 2013 -- 12:03PM, Specul8 wrote:

Hi DragonsWrath.

When you release the Gatecrash update, are you please able to fix Garruk Relentless / Garruk, The Veil-Cursed so the Quantity values update eachother (like Delver of secrets does with Insectile Aberration, for example).




Yeah, I recall looking into that, but forget why it didn't work.. I'll double check.


Jan 29, 2013 -- 4:02PM, handyman11 wrote:

In regards to anyone that is still having issues with the following error:




This next release will include a fix so that doesn't show up 100 times.

Casual Magic player since 2003 (Onslaught Block).  60% Johnny, 40% Timmy.


Want a free, graphics-based, collection database to inventory your cards? 
I made one!  Feedback welcome.  Program runs offline, includes powerful search options, art, Oracle text, data import/export, and a rigorously updated list of every card ever printed. 
Beta 5.9 (Return to Ravnica) now available!


So .   Green needs an iconic creature type , eh ?   How about wurms !

One Billion Words - 1001 Fantasy Landscapes: Share DnD-ish landscapes for use in homebrew campaigns!
Quick Reply
Cancel
4 months ago  ::  Jan 29, 2013 - 5:03PM #444
Specul8
Date Joined: Jul 18, 2011
Posts: 33

Jan 29, 2013 -- 4:02PM, handyman11 wrote:



I was able to correct this issue by going into SQL Server 2005 (Management Studio) and writing the following script into a new Query window :

exec sp_configure 'user instances enabled', 1

Once you have executed the query above, write the following code:


Reconfigure


And Execute the code above.  Close SQL Server and open Card Tracker.
This is what worked for me..  Thanks




That's brilliant - I'm going to give that a try tonight. Does it fix the message temporarily or permanently (or "as permanently as I have seen over the last 4 days" etc)

Quick Reply
Cancel
4 months ago  ::  Jan 29, 2013 - 5:16PM #445
handyman11
Date Joined: Jan 29, 2013
Posts: 3

Jan 29, 2013 -- 5:03PM, Specul8 wrote:

Jan 29, 2013 -- 4:02PM, handyman11 wrote:



I was able to correct this issue by going into SQL Server 2005 (Management Studio) and writing the following script into a new Query window :

exec sp_configure 'user instances enabled', 1

Once you have executed the query above, write the following code:


Reconfigure


And Execute the code above.  Close SQL Server and open Card Tracker.
This is what worked for me..  Thanks




That's brilliant - I'm going to give that a try tonight. Does it fix the message temporarily or permanently (or "as permanently as I have seen over the last 4 days" etc)


I have yet to have the error pop up again - opened about 4-5 times since then.  It is only a fix for that error that I was getting.  Basically SQL Server was not set to be enabled when installed so enabling it will now let the code in the program hit SQL Server and work its magic - no pun intended....

Good Luck!
Let us know if it works....

Quick Reply
Cancel
4 months ago  ::  Jan 29, 2013 - 5:56PM #446
DragonsWrath
Date Joined: Mar 19, 2007
Posts: 3,754

Jan 29, 2013 -- 5:16PM, handyman11 wrote:

I have yet to have the error pop up again - opened about 4-5 times since then.  It is only a fix for that error that I was getting.  Basically SQL Server was not set to be enabled when installed so enabling it will now let the code in the program hit SQL Server and work its magic - no pun intended....

Good Luck!
Let us know if it works....




Yeah, basically the error was that SQL was not replying fast enough.  Usually because it wasn't running yet and the PC had to launch it, which takes time.  Once it's running it will respond pretty quick.

This probably shortcuts that by making it run in the background all the time.  Not a "problem" but it will consume resources.  Just guessing, but that's probably a good one.   

Casual Magic player since 2003 (Onslaught Block).  60% Johnny, 40% Timmy.


Want a free, graphics-based, collection database to inventory your cards? 
I made one!  Feedback welcome.  Program runs offline, includes powerful search options, art, Oracle text, data import/export, and a rigorously updated list of every card ever printed. 
Beta 5.9 (Return to Ravnica) now available!


So .   Green needs an iconic creature type , eh ?   How about wurms !

One Billion Words - 1001 Fantasy Landscapes: Share DnD-ish landscapes for use in homebrew campaigns!
Quick Reply
Cancel
4 months ago  ::  Jan 29, 2013 - 7:11PM #447
AngelDeath82
Date Joined: Sep 14, 2007
Posts: 156
I took a slightly different tack to deal with not having SQL running in the background all the time... I created a batch file with the following lines:


@ECHO OFF
for /F "tokens=3 delims=: " %%H in ('sc query "MSSQL$SQLEXPRESS" ^| findstr "        STATE"') do (
if /I "%%H" NEQ "RUNNING" (
  REM Put your code you want to execute here
  REM For example, the following line
  REM ECHO "Service is not running"
  @net start "MSSQL$SQLEXPRESS"
)ELSE(
  REM ECHO "Service is running"
)
)
CALL "C:\Program Files\Card Tracker\Card Tracker.exe"
@ECHO OFF
@net stop "MSSQL$SQLEXPRESS"
Quick Reply
Cancel
4 months ago  ::  Jan 30, 2013 - 12:36PM #448
handyman11
Date Joined: Jan 29, 2013
Posts: 3

DragonsWrath,
Are you still wanting any issues reported?  This is more data related - Urza's Destiny is showing a set abbreviation of USD but I believe it is UDS. 

Let me know if you want issues like this reported.
Thanks

Quick Reply
Cancel
3 months ago  ::  Feb 11, 2013 - 3:20AM #449
Specul8
Date Joined: Jul 18, 2011
Posts: 33
Hi DragonsWrath - Just checking to see if it will be much longer before the latest Gatecrash database is released?


Thanks!
   
Quick Reply
Cancel
3 months ago  ::  Feb 13, 2013 - 3:46AM #450
DragonsWrath
Date Joined: Mar 19, 2007
Posts: 3,754

===== Card Tracker (Beta 5.10) =====




Features
> No new features
 


Database Updates
> Gatecrash
> FTV - Realms
> FNM Promo cards are now up-to-date
> Added lots of Media Insert cards for the comic books, DOTP promos, etc


Bug Fixes
> No more repeated SQL error warning box!
> Garruk Relentless inventory bug fixed (now updates Garruk, the Veil-Cursed correctly)




DOWNLOAD

Bad news:  I'm late!

Good news:  I now have real internet for the first time in my life!


Sorry, I was in the middle of moving, which consumed more time than I would have thought.  Also, I had no internet for a while.  But now I've actually got good internet, as opposed to dial-up or a 5 GB monthly data limit.  Harray!
Casual Magic player since 2003 (Onslaught Block).  60% Johnny, 40% Timmy.


Want a free, graphics-based, collection database to inventory your cards? 
I made one!  Feedback welcome.  Program runs offline, includes powerful search options, art, Oracle text, data import/export, and a rigorously updated list of every card ever printed. 
Beta 5.9 (Return to Ravnica) now available!


So .   Green needs an iconic creature type , eh ?   How about wurms !

One Billion Words - 1001 Fantasy Landscapes: Share DnD-ish landscapes for use in homebrew campaigns!
Quick Reply
Cancel
Page 45 of 46  •  Prev 1 ... 41 42 43 44 45 46 Next
Jump Menu:
 
    Viewing this thread :: 0 registered and 1 guest
    No registered users viewing