Posts

Showing posts with the label enable

Sonus SBC1000 2000 Release 3 2 Gives You PRI FXS or FXO Ports Now You License Enable Them When Needed

Image
Sonus SBC1000 2000 Release 3 2 Gives You PRI FXS or FXO Ports Now You License Enable Them When Needed With Sonus SBC1000/2000 release 3.2 comes: Integration with the Sonus Element Management System (EMS), the normal handful of firmware fixes/tweaks perhaps most importantly Sonus now gives you PRI, FXS or FXO ports now and a simple license purchase enables them whenever you are ready. So what does this mean for Lync implementers and ongoing support on the ground? Well, that discussion about whether the customer needs certain ports (FXS, FXO or PRI) and how many ports has just gotten a lot easier: Just order the Sonus SBC 1000 or 2000 model that includes the projected future port need and only pay for the license to use them when the need arises, with the added benefit of no need to physically install the ports at that time.  If my memory is correct the devices can include up to 8 PRI that can be license activated later on. Sonus is pretty much giving away FXS, FXO and PRI po...

Steam Games Updates Patches How to Enable Auto Updating

Image
Steam Games Updates Patches How to Enable Auto Updating So someone asked me how to enable auto updating for his Steam games. This guide is for him. This guide also covers how to force your Steam client to automatically begin scanning for Steam games updates. By the way: RIP THQ and Vigil Games. You guys will be missed. Heres hoping well see a Darksiders 3. A world without that franchise is no place for a horse. The full guide after the jump. Setting your Steam client to actively check if your Steam games have patches is easy. Just ensure that the specific game you want to be patched already has the "Always keep this game up to date" option enabled. To do this, right click on the games title and click on Properties:   Verify that the "Always keep this game up to date" option is enabled. Conversely, if you have a game that you seldom play that always updates, consequently hogging your bandwidth, you can pick the "Do not automatically update this game" option...

SQL Disable Or Enable a Trigger

SQL Disable Or Enable a Trigger Triggers are enabled by default when they are created. Disabling a trigger does not drop it. The trigger still exists as an object in the current database. However, the trigger does not fire when any Transact-SQL statements on which it was programmed are executed. Triggers can be re-enabled by using ENABLE TRIGGER. DML triggers defined on tables can be also be disabled or enabled by using ALTER TABLE. Purpose of the following Trigger --------------------------------- --AVOIDE TO DROP TABLES FROM DATABASE USE Test_Manoj Go CREATE TRIGGER TRG_DB_SAFTY ON DATABASE FOR DROP_TABLE AS RAISERROR(DROP CANNOT POSSIBLE,PLEASE CONTACT ADMIN..,16,1) ROLLBACK ; After creation of trigger any point of time a trigger can be disable or enable by the user.For Disable a trigger(de-activate) DISABLE keyword is used as follows:- --Disable Trigger on Database USE Test_Manoj Go disable TRIGGER TRG_DB_SAFTY on database For Enable a trigger on Database,any other object we need E...