|
What&#rsquo;s next for VMware End-User Computing (EUC)? Pat Lee, vice president of product management for cloud apps and desktops at VMware, recently talked about this and much more on EUC podcast Frontline Chatter. &#rsquo;We&#rsquo;re always going to be improving and making constant changes each quarter to address customer concerns, figure out the use cases and […] The post [Podcast] VMware End-User Computing on Frontline Chatter appeared first on VMware End-User Computing Blog.
|
|
Full View / NID: 63197 / Submitted by: The Zilla of Zuron
|
|
Want to give your company a competitive advantage with a new tech strategy? Want to exchange ideas with technology pros in your industry? Here are 13 essential 2017 conferences for business and tech leaders in education, enterprises, financial services, government, healthcare and retail this winter and spring. RSA Conference: Feb. 13-17 in San Francisco, information […]]>...
|
|
Full View / NID: 63196 / Submitted by: The Zilla of Zuron
|
|
A question came up recently from a customer that went something like this: “I am looking for an active/active configuration for disaster avoidance and disaster recovery with a recovery time objective of 0 minutes and a recovery point objective of 0 minutes. Is this something I can achieve with VMware vSAN and/or Site Recovery Manager The post vSAN and SRM RPO and RTO appeared first on Virtual Blocks.
|
|
Full View / NID: 63195 / Submitted by: The Zilla of Zuron
|
|
If you have been following along in this series, first of all, thank you! Next, you should have a basicthree-tier application created: I tried to usesimple components to make it usable in either a home lab or a nested environment, so theyshould perform exceedingly wellin areal environment. Virtual Machine Profile The component Photon OS machines […] The post HOL Three-Tier Application, Part 5 – Use Cases appeared first on VMware Hands-On Lab (HOL) Blog.
|
|
Full View / NID: 63194 / Submitted by: The Zilla of Zuron
|
|
The world&#rsquo;s largest gathering for the mobile industry, Mobile World …
Read More
|
|
Full View / NID: 63193 / Submitted by: The Zilla of Zuron
|
|
Together, VMware and our partners are influencing digital transformation efforts, globally and across all sectors. Thanks in large part to the feedback from our partner community; we all continue to act as trusted advisers driving strategy and positively impacting customer revenue and growth outcomes. We are eager to hear from you—our valued partners. The powerful […] The post 2017 Partner Survey: We Want to Hear From You appeared first on Power of Partnership.
|
|
Full View / NID: 63192 / Submitted by: The Zilla of Zuron
|
|
HotDocs, the industry leader in document automation technology, has today announced that Dave Coplin, author and technology visionary, will deliver the keynote address at the HotDocs User Group (HUG) in June 2017.With over 25 years in the technology industry and through his day job as a technology evangelist with Microsoft, Coplin is at the forefront of conversations around how individuals and organisations can benefit from the transformational potential that technology offers. One of the most...
Source: RealWire
|
|
Full View / NID: 63191 / Submitted by: The Zilla of Zuron
|
|
p>By Kathy Winter It’s no secret I’ve long been a champion for the autonomous driving industry and the potential it has to reduce the number of accidents and save lives. But a recent broken ankle – and more than two months on crutches – brought that potential into focus as I finally understood the daily …...
|
|
Full View / NID: 63190 / Submitted by: The Zilla of Zuron
|
|
Full View / NID: 63189 / Submitted by: The Zilla of Zuron
|
|
The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 9.6.2, 9.5.6, 9.4.11, 9.3.16, and 9.2.20. This release includes fixes that prevent data corruption issues in index builds and in certain write-ahead-log replay situations, which are detailed below. It also patches over 75 other bugs reported over the last three months.
Users should plan to apply this update at the next scheduled downtime.
Build corruption with CREATE INDEX CONCURRENTLY
There existed a race condition if CREATE INDEX CONCURRENTLY was called on a column that had not been indexed before, then rows that were updated by transactions running at the same time as the CREATE INDEX CONCURRENTLY command could have been indexed incorrectly.
If you suspect this may have happened, the most reliable solution is to rebuild affected indexes after installing this update.
This issue is present in the 9.2, 9.3, 9.4, 9.5, and 9.6 series of PostgreSQL.
Fixes for visibility and write-ahead-log stability
These release contains several fixes to improve the stability of visible data and WAL logging that we wish to highlight here.
Prior to this release, data could be prematurely pruned by a vacuum operation when a special snapshot used for catalog scans was presently available. Specifically, the vacuum operation would not be aware of the oldest xmin for this special snapshot. The error would surface with a message such as:
"cache lookup failed for relation 1255"
This release ensures that vacuum operations will account for the catalog scan snapshots.
Additionally, there are several fixes to improved the stability of write-ahead-logging, including:
* A fix for BRIN index WAL logging where a replay could make a portion of the BRIN index useless and require recomputing
* A fix for an unlogged table where a WAL-log would be created under the "wal_level = minimal" setting, and upon replay after crash, the table would not appear to be properly reset
* A fix in the WAL page header validation when re-reading segments that fixes the error of "out-of-sequence TLI" that could be reported during recovery
Theses issues are present in the 9.6 series of PostgreSQL releases and may also be present in the 9.2, 9.3, 9.4, and 9.5 series.
Bug Fixes and Improvements
This update also fixes a number of bugs reported in the last few months. Some of these issues affect only the 9.6 series, but many affect all supported versions. There are more than 75 fixes provided in this release, including:
- Several fixes for operating in hot standby mode
- Disallow setting the num_sync field to zero in synchronous_standby_names
- Don't count background worker processes against a user's connection limit
- Fix check for when an extension member object can be dropped
- Fix tracking of initial privileges for extension member objects so that it works correctly with ALTER EXTENSION ... ADD/DROP
- Several vacuum and autovacuum fixes
- Fix CREATE OR REPLACE VIEW to update the view query before attempting to apply the new view options
- Make sure ALTER TABLE preserves index tablespace assignments when rebuilding indexes
- Several fixes to the query planner, including fixes for foreign tables and CTEs
- Several fixes around the full-text search feature to improve accuracy and performance of the search
- Several fixes and performance improvements in several array functions
- Several fixes around the interaction of foreign-key constraints with trigger functions around specific ALTER TABLE operations
- Remove optimizations for date/time data types that returned incorrect data
- Fix incorrect use of view reloptions as regular table reloptions
- Fix incorrect "target lists can have at most N entries" complaint when using ON CONFLICT with wide tables
- Fix spurious "query provides a value for a dropped column" errors during INSERT or UPDATE on a table with a dropped column
- Prevent multicolumn expansion of foo.* in an UPDATE source expression
- Ensure that column typmods are determined accurately for multi-row VALUES constructs
- Several fixes for the psql command-line tool
- Prevent multiple calls of pg_start_backup() and pg_stop_backup() from running concurrently
- Several fixes for pg_dump, pg_restore, and pg_basebackup, including a possible pg_basebackup failure on standby server when including WAL files
- Several fixes for parallel workers and plans for parallel queries including fixing a crash if the number of workers available to a parallel query decreases during a rescan
- Several fixes to PL/pgSQL, PL/Python, and PL/Tcl
- Several fixes for contrib modules
- Allow DOS-style line endings in ~/.pgpass files, even on Unix
Update time zone data files to tzdata release 2016j for DST law changes in northern Cyprus (adding a new zone Asia/Famagusta), Russia (adding a new zone Europe/Saratov), Tonga, and Antarctica/Casey. Historical corrections for Italy, Kazakhstan, Malta, and Palestine. Switch to preferring numeric zone abbreviations for Tonga.
Updating
All PostgreSQL update releases are cumulative. As with other minor releases, users are not required to dump and reload their database or use pg_upgrade in order to apply this update release; you may simply shut down PostgreSQL and update its binaries.
If you believe you have been affected by the aforementioned CREATE INDEX CONCURRENTLY bug, you will have to rebuild the index. Here is an example of how to rebuild an index in a production system without losing the ability to utilize the index:
CREATE INDEX CONCURRENTLY new_index_name ON table_name (column_name);
DROP INDEX CONCURRENTLY old_index_name;
ALTER INDEX new_index_name RENAME TO old_index_name;
Note that using this method means you will briefly have two copies of the same index, so if disk space is an issue you may need to take other approaches.
Users who have skipped one or more update releases may need to run additional, post-update steps; please see the release notes for earlier versions for details.
Links:
|
|
Full View / NID: 63188 / Submitted by: The Zilla of Zuron
|
|
p>Intel today extended the performance capabilities of the Intel® Xeon® processor E7-8800 v4 product family with the addition of a high-performance SKU in the processor family’s Advanced SKU stack. The new SKU delivers the processor family’s highest performance to handle the most demanding, mission-critical enterprise workloads. Businesses can use Intel Xeon processor E7-8894 v4-based servers …...
|
|
Full View / NID: 63187 / Submitted by: The Zilla of Zuron
|
|
With Itaca’s modular approach, service providers can extract value out of Big Data and gain increased insight into customer satisfactionMilan, February 9, 2017 - Italtel, a leading telecommunications company in IT system integration, managed services, Network Functions Virtualization (NFV) and all-IP solutions, today announced it will launch its Itaca (Italtel Analytics Configurable Asset) solution at Mobile World Congress 2017. As a modular and configurable analytics solution, Itaca improves the end-user experience, leveraging end-to-end visibility, knowledge...
Source: RealWire
|
|
Full View / NID: 63186 / Submitted by: The Zilla of Zuron
|
|
ABBYY and partner will showcase capture-driven business process automation solutions for shared service providersLondon, UK (9 February 2017) - ABBYY, a leading global provider of technologies and solutions to action information, will present capture-driven process automation solutions for BPOs and Shared Service Centers (SSC) at the Future of Finance Summit in London. This industry-leading event for CFOs, Finance Leaders and Global Process Owners addresses the most pressing topics in the industry and crafts a shared...
Source: RealWire
|
|
Full View / NID: 63185 / Submitted by: The Zilla of Zuron
|
|
The Official Pattern Release or OPR is Trend Micro's latest compilation of patterns for identified viruses. It is guaranteed to have passed a series of critical tests to ensure that customers get optimum protection from the latest virus threats.
|
|
Full View / NID: 63184 / Submitted by: The Zilla of Zuron
|
|
Register below for VMware’s annual EUC Insights Tradeshow in your geography: AMER - February 15 - REGISTER NOW APJ - March 2 - REGISTER NOW EMEA - March 7 - REGISTER NOW EUC Insights is a 3-hour, virtual tradeshow (with interactive booths, technical demos, and HOLs) that is dedicated to theend-user computing community. You’ll get […] The post The EUC Insights Virtual Tradeshow is Coming to Your Geo appeared first on Partner News.
|
|
Full View / NID: 63180 / Submitted by: The Zilla of Zuron
|
|
PowerCLI 6.5 was a big release for us. We changed the name to reflect that we&#rsquo;re doing a bit more than just vSphere these days, we fully converted our snap-ins to modules, and so many more upgrades and updates. There are always a lot of asks for it with every release, so I am extremely […] The post New Release: PowerCLI 6.5 R1 Poster! appeared first on VMware PowerCLI Blog.
|
|
Full View / NID: 63183 / Submitted by: The Zilla of Zuron
|
|
Since vRA 7.2. was released we are seeing more and more customers with earlier vRA versions wanting to move to the new version. I was recently involved in a migration of a customer’s production environment from vRA 6.2 to 7.2 (If you haven’t heard of migration, check it out - it’s a totally awesome feature). The post How to use dynamic property definitions in vRA 7.2 appeared first on VMware Cloud Management.
|
|
Full View / NID: 63182 / Submitted by: The Zilla of Zuron
|
|
We are excited to host our first Facebook Live vSAN TechTalk! Please tune into our Facebook page on Friday, February 10th 1:30 P.M. PST to hear Jase McCarty (@JaseMcCarty), Staff Technical Marketing Architect, talk about vSAN 2-Node with Direct Connect. During the 10 minute live stream, Jase will: Do the feature introduction Cover technical requirements The post Facebook Live vSAN TechTalk with Jase McCarty appeared first on Virtual Blocks.
|
|
Full View / NID: 63181 / Submitted by: The Zilla of Zuron
|
|
p>WASHINGTON, D.C., Feb. 8, 2017 – Intel Corporation today announced plans to invest more than $7 billion to complete Fab 42, which is expected to be the most advanced semiconductor factory in the world. The high-volume factory is in Chandler, Ariz., and is targeted to use the 7 nanometer (nm) manufacturing process. It will produce …...
|
|
Full View / NID: 63179 / Submitted by: The Zilla of Zuron
|
|
Alzheimer’s. Cancer. Parkinson’s. These devastating diseases are just a few of the hundreds that scientists are struggling to cure with new medicines in the face of soaring drug-discovery costs and testing times. Now, artificial intelligence is showing the potential to be a faster, more efficient way to find and develop new drugs. A growing number […]
The post Creating New Drugs, Faster: How AI Promises to Speed Drug Development appeared first on The Official NVIDIA Blog.
|
|
Full View / NID: 63178 / Submitted by: The Zilla of Zuron
|
|
p>Intel has teamed up with over 40 solution providers to create the Healthcare Security Readiness Program, aimed at helping to prevent breaches, including cybercrime hacking and ransomware. Nearly 90 percent of health care organizations – often seen as vulnerable targets lagging in security compared with peers in other industries, such as financial services – have …...
|
|
Full View / NID: 63177 / Submitted by: The Zilla of Zuron
|
|
p>Intel today announced the open-source BigDL, a Distributed Deep Learning Library for the Apache Spark* open-source cluster-computing framework. The deep learning library is part of Intel Corporation’s strategy for enabling state-of-the-art Artificial Intelligence in the industry. Announced last November, the strategy detailed Intel’s work to make AI training and tools broadly accessible to developers through …...
|
|
Full View / NID: 63176 / Submitted by: The Zilla of Zuron
|
|
LONDON, UK. February 8, 2017 - Spectralink Corporation (www.spectralink.com), the global leader in enterprise mobility solutions, is bringing its range of fully integrated and scalable enterprise-grade DECT and superior Voice over Wi-Fi mobility portfolio to Cisco Live! Berlin 2017 on Booth 98, in Hall 4.2 World of Solutions. The company is also publishing two new research-based white papers on mobility developments in the Retail and Healthcare sectors, as well as celebrating the new award-winning status...
Source: RealWire
|
|
Full View / NID: 63175 / Submitted by: The Zilla of Zuron
|
|
Easy to use yet advanced design capabilities tackle declining response ratesLondon, UK and Oslo, Norway and New York, NY, 8 February, 2017: Confirmit has launched an intuitive and ground-breaking survey designer that removes the complexity of advanced survey creation and enables questionnaires to be created in half the time of many competing solutions.Confirmit Survey Designer has been developed to make it quicker and easier for users to create highly engaging surveys, saving designers many hours...
Source: RealWire
|
|
Full View / NID: 63174 / Submitted by: The Zilla of Zuron
|
|
London, UK - 8th February 2017 - Dimension Data, the USD$ 7.5 billion global solutions and services provider, is proud to announce that it has been officially certified by the Top Employers Institute for its exceptional employee offerings.The annual, international research, undertaken by the Top Employers Institute, recognises leading employers around the world: those that provide excellent employee conditions, nurture and develop talent throughout all levels of the organisation, and which strive to continuously optimise...
Source: RealWire
|
|
Full View / NID: 63173 / Submitted by: The Zilla of Zuron
|
|
The Official Pattern Release or OPR is Trend Micro's latest compilation of patterns for identified viruses. It is guaranteed to have passed a series of critical tests to ensure that customers get optimum protection from the latest virus threats.
|
|
Full View / NID: 63172 / Submitted by: The Zilla of Zuron
|
|
By: Alain Geenrits, Blue Medora   vRealize Operations is a very powerful management platform with some little known features. None are used less than super metrics and that is a shame as it is a very flexible and powerful way to extend your management environment. In this article, I will discuss some use cases with The post Supercharge Your vRealize Operations with Super Metrics appeared first on VMware Cloud Management.
|
|
Full View / NID: 63168 / Submitted by: The Zilla of Zuron
|
|
With an all-time high of 7,000 vSAN customers, we want to make sure that your vSAN deployment and operations are seamless and that you&#rsquo;re getting the most benefit from the product. Our ongoing &#rsquo;Getting More Out of vSAN: Deploy and Operate&#rdquo; webcast series, presented by vSAN experts, is designed to help you succeed in your The post Getting More Out of vSAN: February Webcasts appeared first on Virtual Blocks.
|
|
Full View / NID: 63171 / Submitted by: The Zilla of Zuron
|
|
This is a cross-promoted blog post, originally posted on the VMware Radius blog. View the original blog post here. Last October, when VMware unveiled a strategic partnership with Amazon Web Services (AWS), many in the tech industry were surprised. The two companies, once spirited competitors, announced they were collaborating on a new hybrid cloud solution The post A Cloud Alliance Between VMware and AWS Takes Shape appeared first on VMware vSphere Blog.
|
|
Full View / NID: 63170 / Submitted by: The Zilla of Zuron
|
|
Did you know you can use VMware Workstation or Fusion to safely browse the web? Check out our video and learn more below! A quick History Lesson During the Internet’s infancy, ‘Surfing’the World Wide Web was an exhilarating experience. (complete with a soundtrack!) It wasn’t called ‘Web Surfing’ without good reason, although we don’t really […] The post Using Workstation to Browse the Web More Safely appeared first on VMware Workstation Zealot.
|
|
Full View / NID: 63169 / Submitted by: The Zilla of Zuron
|