Share this
Issues With Database Service Names Starting With Pluggable Database (PDB) Name
by Jure Bratina on Nov 5, 2020 12:00:00 AM
Setting up the test environment to reproduce the problem
I performed the steps below on a 19.8.0 DB; no ASM or GI managed resources are present. I start with a new PDB named PDB1, and open it:SQL> create pluggable database pdb1 admin user pdb_adm identified by oracle create_file_dest='/u02/oradata/CDB1'; Pluggable database created.The default CDB services are started, and PDB1's default service "pdb1," associated with CON_ID=3. This identifies the initial current container for the service: CDB$ROOT:
SQL> select con_id, name from v$services order by con_id, name; CON_ID NAME ---------- --------------- 1 CDB2 1 CDB2XDB 1 SYS$BACKGROUND 1 SYS$USERS 3 pdb1 SQL> select con_id, name from cdb_services order by con_id, name; CON_ID NAME ---------- ----------------- 1 CDB2 1 CDB2.localdomain 1 CDB2XDB 1 SYS$BACKGROUND 1 SYS$USERS 3 PDB1 6 rows selected.PDB1:
SQL> select con_id, name from v$services order by con_id, name; CON_ID NAME ---------- ----- 3 pdb1 SQL> select con_id, name from cdb_services order by con_id, name; CON_ID NAME ---------- ----- 3 PDB1Next, I create and start services in PDB1. I chose service names to include various combinations of names using "pdb1" and "pdb1.":
SQL> alter session set container=pdb1; exec dbms_service.create_service(service_name=>'pdb1.test1',network_name=>'pdb1.test1'); exec dbms_service.create_service(service_name=>'test2.pdb1',network_name=>'test2.pdb1'); exec dbms_service.create_service(service_name=>'test3.pdb1.app',network_name=>'test3.pdb1.app'); exec dbms_service.create_service(service_name=>'pdb1_A',network_name=>'pdb1_A'); exec dbms_service.create_service(service_name=>'pdb1_B.app',network_name=>'pdb1_B.app'); exec dbms_service.create_service(service_name=>'custom_service.app',network_name=>'custom_service.app'); exec dbms_service.start_service(service_name=>'pdb1.test1'); exec dbms_service.start_service(service_name=>'test2.pdb1'); exec dbms_service.start_service(service_name=>'test3.pdb1.app'); exec dbms_service.start_service(service_name=>'pdb1_A'); exec dbms_service.start_service(service_name=>'pdb1_B.app'); exec dbms_service.start_service(service_name=>'custom_service.app');I'll be using the below script to display the services' status:
SQL> !cat s.sql set lin 500 pagesize 9999 col name for a50 show con_name prompt prompt ** Output from v$active_services: ** select con_id, name from v$active_services where lower(name) like '%pdb%' or lower(name) like '%app%' order by con_id, name; prompt ** Output from cdb_services: ** select con_id, name from cdb_services where lower(name) like '%pdb%' or lower(name) like '%app%' order by con_id, name;Let's check the status of the above-created services: CDB$ROOT:
** Output from v$active_services: ** CON_ID NAME ---------- ------------------ 1 pdb1.test1 <<-- 3 custom_service.app 3 pdb1 3 pdb1_A 3 pdb1_B.app 3 test2.pdb1 3 test3.pdb1.app 7 rows selected. ** Output from cdb_services: ** CON_ID NAME ---------- ------------------ 3 PDB1 3 custom_service.app 3 pdb1.test1 <<-- 3 pdb1_A 3 pdb1_B.app 3 test2.pdb1 3 test3.pdb1.appPDB1:
** Output from v$active_services: ** CON_ID NAME ---------- ------------------ 3 custom_service.app 3 pdb1 3 pdb1_A 3 pdb1_B.app 3 test2.pdb1 3 test3.pdb1.app 6 rows selected. ** Output from cdb_services: ** CON_ID NAME ---------- ------------------ 3 PDB1 3 custom_service.app 3 pdb1.test1 3 pdb1_A 3 pdb1_B.app 3 test2.pdb1 3 test3.pdb1.app 7 rows selected.As you can see, the "pdb1.test1" service is apparently associated to the root container (v$active_services.con_id=1), and not with PDB1 as configured (cdb_services.con_id=3). All the other created services are being reported as running in PDB1 (v$active_services.con_id=3).
Why is this a problem?
Let's create two local users in PDB1 — u1 and u2 — and set u1's password to expired:SQL> grant create session to u1 identified by oracle; SQL> grant create session to u2 identified by oracle; SQL> alter user u1 password expire;If I try to connect as u2, everything works without problems:
$ sqlplus u2/oracle@localhost/pdb1.test1 SQL> select sys_context('userenv','cdb_name') cdb_name, sys_context('userenv','con_name') con_name, sys_context('userenv','service_name') service_name from dual; CDB_NAME CON_NAME SERVICE_NAME -------------------- -------------------- -------------------- CDB2 PDB1 pdb1.test1However, if I try to connect to u1 and change its password, this is what happens:
$ sqlplus u1/oracle@localhost/pdb1.test1 SQL*Plus: Release 19.0.0.0.0 - Production on Mon Oct 26 11:57:56 2020 Version 19.8.0.0.0 Copyright (c) 1982, 2020, Oracle. All rights reserved. ERROR: ORA-28001: the password has expired Changing password for u1 New password: Retype new password: ERROR: ORA-01017: invalid username/password; logon denied Password unchanged Enter user-name:
Analysis
Tracing the session with oradebug before entering the new password (with events 10046 and 10079), the session gets established via the pdb1.test1 service, and it's traced under "CDB$ROOT(1)":*** 2020-10-26T12:01:31.706897+01:00 (CDB$ROOT(1)) <<-- traced at "CDB$ROOT(1)" level *** SESSION ID:(269.54910) 2020-10-26T12:01:31.706934+01:00 *** SERVICE NAME:(pdb1.test1) 2020-10-26T12:01:31.706937+01:00 <<-- service pdb1.test1 was used when connecting *** MODULE NAME:([email protected] (TNS V1-V3)) 2020-10-26T12:01:31.706940+01:00 *** ACTION NAME:() 2020-10-26T12:01:31.706943+01:00 *** CONTAINER ID:(1) 2020-10-26T12:01:31.706945+01:00Not going into the details of the trace, we might get a clue at what's happening by checking the audit log. From PDB1:
SQL> select * from ( select ntimestamp#, userid, userhost, terminal, action#, returncode, current_user, comment$text from sys.aud$ where userid = 'U1' and returncode <> 0 order by ntimestamp# desc ) where rownum = 1; NTIMESTAMP# USERID USERHOST TERMINAL ACTION# RETURNCODE CURRENT_USER COMMENT$TEXT ------------------------------ ---------- -------------------- --------------- --------- ---------- --------------- ---------------------------------------------------------------------- 26-OCT-20 10.57.56.687258 AM U1 hol.localdomain pts/6 100 28001 U1 Authenticated by: DATABASE;AUTHENTICATED IDENTITY: U1; Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=58922))From CDB$ROOT:
SQL> select * from ( select ntimestamp#, userid, userhost, terminal, action#, returncode, current_user, comment$text from sys.aud$ where userid = 'U1' and returncode <> 0 order by ntimestamp# desc ) where rownum = 1; 2 3 4 5 6 7 NTIMESTAMP# USERID USERHOST TERMINAL ACTION# RETURNCODE CURRENT_USER COMMENT$TEXT ------------------------------ -------- ---------------- ---------- ------- ---------- --------------- ----------------------------------------------------------------- 26-OCT-20 11.01.32.725820 AM U1 hol.localdomain pts/6 100 1017 U1 Authenticated by: DATABASE;AUTHENTICATED IDENTITY: U1; Client add ress: (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=58922))As you can see, when entering the password for the u1 user, we get "ORA-28001: the password has expired," which is recorded in the PDB's audit log. Then, after changing the password, an attempt is made to connect to the root container as u1. Since u1 is not a common user, the login fails, and we get the "ORA-01017: invalid username/password; logon denied" error. What happens if I try to repeat the same steps using the "test2.pdb1" service name, which according to v$active_services maps to CON_ID=3, so PDB1? This time the password change succeeds:
$ sqlplus u1/oracle@localhost/test2.pdb1 SQL*Plus: Release 19.0.0.0.0 - Production on Mon Oct 26 12:38:04 2020 Version 19.8.0.0.0 Copyright (c) 1982, 2020, Oracle. All rights reserved. ERROR: ORA-28001: the password has expired Changing password for u1 New password: Retype new password: Password changed Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.8.0.0.0 SQL>Enabling tracing on the session before the initial password is provided, this time the trace gets generated in the context of "PDB1(3)." Notice the difference with the previous trace header, where "CDB$ROOT(1)" was reported:
*** 2020-10-26T12:39:18.045405+01:00 (PDB1(3)) <<-- traced at "CDB$ROOT(1)" level *** SESSION ID:(269.12918) 2020-10-26T12:39:18.045547+01:00 *** SERVICE NAME:(test2.pdb1) 2020-10-26T12:39:18.045557+01:00 <<-- service test2.pdb1 was used when connecting *** MODULE NAME:([email protected] (TNS V1-V3)) 2020-10-26T12:39:18.045564+01:00 *** ACTION NAME:() 2020-10-26T12:39:18.045570+01:00 *** CONTAINER ID:(3) 2020-10-26T12:39:18.045574+01:00Checking PDB1's audit log contents, there's an initial ORA-28001, followed by RETURNCODE=0, thus a successful login:
SQL> select * from ( select ntimestamp#, userid, userhost, terminal, action#, returncode, current_user, comment$text from sys.aud$ where userid = 'U1' order by ntimestamp# desc ) where rownum <=2; 2 3 4 5 6 NTIMESTAMP# USERID USERHOST TERMINAL ACTION# RETURNCODE CURRENT_USER COMMENT$TEXT ------------------------------ -------- ---------------- ---------- ------- ---------- --------------- ----------------------------------------------------------------- 26-OCT-20 11.39.18.069634 AM U1 hol.localdomain pts/6 100 0 U1 Authenticated by: DATABASE;AUTHENTICATED IDENTITY: U1; Client add ress: (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=59244)) 26-OCT-20 11.38.04.992001 AM U1 hol.localdomain pts/6 100 28001 U1 Authenticated by: DATABASE;AUTHENTICATED IDENTITY: U1; Client add ress: (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=59244))There are no new entries for the u1 user in CDB$ROOT's audit log.
Other anomalies
Start / stop service
There are also other anomalies, e.g. the 'pdb1.test1' service can be started and stopped from PDB1, but then not started back: From PDB1:SQL> exec dbms_service.stop_service(service_name=>'pdb1.test1'); PL/SQL procedure successfully completed.Querying v$active_services from PDB1 or CDB$ROOT, the service is not displayed. However, if I try to start it:
SQL> exec dbms_service.start_service(service_name=>'pdb1.test1'); BEGIN dbms_service.start_service(service_name=>'pdb1.test1'); END; * ERROR at line 1: ORA-44773: Cannot perform requested service operation. ORA-06512: at "SYS.DBMS_SERVICE_ERR", line 63 ORA-06512: at "SYS.DBMS_SERVICE", line 486 ORA-06512: at line 1 SQL>
Closing and / or dropping PDB1
Going to the initial setup, where all of the services I defined, except "pdb1.test1", are mapped to PDB1:SQL> @s CON_NAME ------------------------------ CDB$ROOT ** Output from v$active_services: ** CON_ID NAME ---------- ------------------- 1 pdb1.test1 3 custom_service.app 3 pdb1 3 pdb1_A 3 pdb1_B.app 3 test2.pdb1 3 test3.pdb1.app 7 rows selected. ** Output from cdb_services: ** CON_ID NAME ---------- ------------------- 3 PDB1 3 custom_service.app 3 pdb1.test1 3 pdb1_A 3 pdb1_B.app 3 test2.pdb1 3 test3.pdb1.app 7 rows selected.Let's close PDB1, and check the services status:
SQL> show con_name CON_NAME ------------------------------ CDB$ROOT SQL> alter pluggable database pdb1 close immediate; Pluggable database altered. SQL> @s CON_NAME --------- CDB$ROOT ** Output from v$active_services: ** CON_ID NAME ---------- ----------- 1 pdb1.test1 3 pdb1 ** Output from cdb_services: ** no rows selected SQL>All of the user created services were closed, except for pdb1.test1. If I try to connect to PDB1 as user u2, I get "ORA-01109: database not open." Let's drop the PDB:
SQL> drop pluggable database pdb1 including datafiles; Pluggable database dropped. SQL> @s CON_NAME --------- CDB$ROOT ** Output from v$active_services: ** CON_ID NAME ---------- ----------- 1 pdb1.test1 ** Output from cdb_services: ** no rows selected SQL>Connecting to PDB1 as user u2 now returns "ORA-01017: invalid username/password; logon denied" which indicates that an authentication attempt is performed. Since only CDB$ROOT is open, let's see if I can connect as system:
$ sqlplus system/oracle@localhost/pdb1.test1 SQL*Plus: Release 19.0.0.0.0 - Production on Mon Oct 26 13:05:59 2020 Version 19.8.0.0.0 Copyright (c) 1982, 2020, Oracle. All rights reserved. Last Successful login time: Mon Oct 26 2020 11:38:01 +01:00 Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.8.0.0.0 SQL> show con_name CON_NAME ------------------------------ CDB$ROOT SQL>
Conclusion
The above are relatively simple use cases, and until this issue is fixed, it's advisable to avoid creating service names starting with "<pdb_name>." as there could be other implications not discussed here. You may also want to keep an eye on the status of the predefect tracked as Bug 32009641.UPDATE, APRIL 2021
The bug description is accessible in this My Oracle Support document: "Bug 32032887 - Unable to Start Service on An Instance and Receive ORA-44773 (Doc ID 32032887.8)"Share this
- Technical Track (967)
- Oracle (410)
- MySQL (140)
- Cloud (128)
- Microsoft SQL Server (117)
- Open Source (90)
- Google Cloud (81)
- Microsoft Azure (63)
- Amazon Web Services (AWS) (58)
- Big Data (52)
- Google Cloud Platform (46)
- Cassandra (44)
- DevOps (41)
- Pythian (33)
- Linux (30)
- Database (26)
- Performance (25)
- Podcasts (25)
- Site Reliability Engineering (25)
- PostgreSQL (24)
- Oracle E-Business Suite (23)
- Oracle Database (22)
- Docker (21)
- DBA (20)
- Security (20)
- Exadata (18)
- MongoDB (18)
- Oracle Cloud Infrastructure (OCI) (18)
- Oracle Exadata (18)
- Automation (17)
- Hadoop (16)
- Oracleebs (16)
- Amazon RDS (15)
- Ansible (15)
- Snowflake (15)
- ASM (13)
- Artificial Intelligence (AI) (13)
- BigQuery (13)
- Replication (13)
- Advanced Analytics (12)
- Data (12)
- GenAI (12)
- Kubernetes (12)
- LLM (12)
- Authentication, SSO and MFA (11)
- Cloud Migration (11)
- Machine Learning (11)
- Rman (11)
- Datascape Podcast (10)
- Monitoring (10)
- Apache Cassandra (9)
- ChatGPT (9)
- Data Guard (9)
- Infrastructure (9)
- Oracle Applications (9)
- Python (9)
- Series (9)
- AWR (8)
- High Availability (8)
- Oracle EBS (8)
- Oracle Enterprise Manager (OEM) (8)
- Percona (8)
- Apache Beam (7)
- Data Governance (7)
- Innodb (7)
- Microsoft Azure SQL Database (7)
- Migration (7)
- Myrocks (7)
- Performance Tuning (7)
- Data Enablement (6)
- Data Visualization (6)
- Database Performance (6)
- Oracle Enterprise Manager (6)
- Orchestrator (6)
- RocksDB (6)
- Serverless (6)
- Azure Data Factory (5)
- Azure Synapse Analytics (5)
- Covid-19 (5)
- Disaster Recovery (5)
- Generative AI (5)
- Google BigQuery (5)
- Mariadb (5)
- Microsoft (5)
- Scala (5)
- Windows (5)
- Xtrabackup (5)
- Airflow (4)
- Analytics (4)
- Apex (4)
- Cloud Security (4)
- Cloud Spanner (4)
- CockroachDB (4)
- Data Management (4)
- Data Pipeline (4)
- Data Security (4)
- Data Strategy (4)
- Database Administrator (4)
- Database Management (4)
- Database Migration (4)
- Dataflow (4)
- Fusion Middleware (4)
- Google (4)
- Oracle Autonomous Database (Adb) (4)
- Oracle Cloud (4)
- Prometheus (4)
- Redhat (4)
- Slob (4)
- Ssl (4)
- Terraform (4)
- Amazon Relational Database Service (Rds) (3)
- Apache Kafka (3)
- Apexexport (3)
- Aurora (3)
- Business Intelligence (3)
- Cloud Armor (3)
- Cloud Database (3)
- Cloud FinOps (3)
- Cosmos Db (3)
- Data Analytics (3)
- Data Integration (3)
- Database Monitoring (3)
- Database Troubleshooting (3)
- Database Upgrade (3)
- Databases (3)
- Dataops (3)
- Digital Transformation (3)
- ERP (3)
- Google Chrome (3)
- Google Cloud Sql (3)
- Google Workspace (3)
- Graphite (3)
- Heterogeneous Database Migration (3)
- Liquibase (3)
- Oracle Data Guard (3)
- Oracle Live Sql (3)
- Oracle Rac (3)
- Perl (3)
- Rdbms (3)
- Remote Teams (3)
- S3 (3)
- SAP (3)
- Tensorflow (3)
- Adf (2)
- Adop (2)
- Amazon Data Migration Service (2)
- Amazon Ec2 (2)
- Amazon S3 (2)
- Apache Flink (2)
- Ashdump (2)
- Atp (2)
- Autonomous (2)
- Awr Data Mining (2)
- Cloud Cost Optimization (2)
- Cloud Data Fusion (2)
- Cloud Hosting (2)
- Cloud Infrastructure (2)
- Cloud Shell (2)
- Cloud Sql (2)
- Conferences (2)
- Cosmosdb (2)
- Cost Management (2)
- Cyber Security (2)
- Data Analysis (2)
- Data Discovery (2)
- Data Engineering (2)
- Data Migration (2)
- Data Modeling (2)
- Data Quality (2)
- Data Streaming (2)
- Data Warehouse (2)
- Database Consulting (2)
- Database Migrations (2)
- Dataguard (2)
- Docker-Composer (2)
- Enterprise Data Platform (EDP) (2)
- Etl (2)
- Events (2)
- Gemini (2)
- Health Check (2)
- Infrastructure As Code (2)
- Innodb Cluster (2)
- Innodb File Structure (2)
- Innodb Group Replication (2)
- NLP (2)
- Neo4J (2)
- Nosql (2)
- Open Source Database (2)
- Oracle Datase (2)
- Oracle Extended Manager (Oem) (2)
- Oracle Flashback (2)
- Oracle Forms (2)
- Oracle Installation (2)
- Oracle Io Testing (2)
- Podcast (2)
- Power Bi (2)
- Redshift (2)
- Remote DBA (2)
- Remote Sre (2)
- SAP HANA Cloud (2)
- Single Sign-On (2)
- Webinars (2)
- X5 (2)
- Actifio (1)
- Adf Custom Email (1)
- Adrci (1)
- Advanced Data Services (1)
- Afd (1)
- Ahf (1)
- Alloydb (1)
- Amazon (1)
- Amazon Athena (1)
- Amazon Aurora Backtrack (1)
- Amazon Efs (1)
- Amazon Redshift (1)
- Amazon Sagemaker (1)
- Amazon Vpc Flow Logs (1)
- Analysis (1)
- Analytical Models (1)
- Anisble (1)
- Anthos (1)
- Apache (1)
- Apache Nifi (1)
- Apache Spark (1)
- Application Migration (1)
- Ash (1)
- Asmlib (1)
- Atlas CLI (1)
- Awr Mining (1)
- Aws Lake Formation (1)
- Azure Data Lake (1)
- Azure Data Lake Analytics (1)
- Azure Data Lake Store (1)
- Azure Data Migration Service (1)
- Azure OpenAI (1)
- Azure Sql Data Warehouse (1)
- Batches In Cassandra (1)
- Business Insights (1)
- Chown (1)
- Chrome Security (1)
- Cloud Browser (1)
- Cloud Build (1)
- Cloud Consulting (1)
- Cloud Data Warehouse (1)
- Cloud Database Management (1)
- Cloud Dataproc (1)
- Cloud Foundry (1)
- Cloud Manager (1)
- Cloud Networking (1)
- Cloud SQL Replica (1)
- Cloud Scheduler (1)
- Cloud Services (1)
- Cloud Strategies (1)
- Compliance (1)
- Conversational AI (1)
- DAX (1)
- Data Analytics Platform (1)
- Data Box (1)
- Data Classification (1)
- Data Cleansing (1)
- Data Encryption (1)
- Data Estate (1)
- Data Flow Management (1)
- Data Insights (1)
- Data Integrity (1)
- Data Lake (1)
- Data Leader (1)
- Data Lifecycle Management (1)
- Data Lineage (1)
- Data Masking (1)
- Data Mesh (1)
- Data Migration Assistant (1)
- Data Migration Service (1)
- Data Mining (1)
- Data Monetization (1)
- Data Policy (1)
- Data Profiling (1)
- Data Protection (1)
- Data Retention (1)
- Data Safe (1)
- Data Sheets (1)
- Data Summit (1)
- Data Vault (1)
- Data Warehouse Modernization (1)
- Database Auditing (1)
- Database Consultant (1)
- Database Link (1)
- Database Modernization (1)
- Database Provisioning (1)
- Database Provisioning Failed (1)
- Database Replication (1)
- Database Scaling (1)
- Database Schemas (1)
- Database Security (1)
- Databricks (1)
- Datascape 59 (1)
- DeepSeek (1)
- Duet AI (1)
- Edp (1)
- Gcp Compute (1)
- Gcp-Spanner (1)
- Global Analytics (1)
- Google Analytics (1)
- Google Cloud Architecture Framework (1)
- Google Cloud Data Services (1)
- Google Cloud Partner (1)
- Google Cloud Spanner (1)
- Google Cloud VMware Engine (1)
- Google Compute Engine (1)
- Google Dataflow (1)
- Google Datalab (1)
- Google Grab And Go (1)
- Graph Algorithms (1)
- Graph Databases (1)
- Graph Inferences (1)
- Graph Theory (1)
- GraphQL (1)
- Healthcheck (1)
- Information (1)
- Infrastructure As A Code (1)
- Innobackupex (1)
- Innodb Concurrency (1)
- Innodb Flush Method (1)
- It Industry (1)
- Kubeflow (1)
- LMSYS Chatbot Arena (1)
- Linux Host Monitoring (1)
- Linux Storage Appliance (1)
- Looker (1)
- MMLU (1)
- Managed Services (1)
- Migrate (1)
- Migrating Ssis Catalog (1)
- Migration Checklist (1)
- MongoDB Atlas (1)
- MongoDB Compass (1)
- Newsroom (1)
- Nifi (1)
- OPEX (1)
- ORAPKI (1)
- Odbcs (1)
- Odbs (1)
- On-Premises (1)
- Ora-01852 (1)
- Ora-7445 (1)
- Oracle Cursor (1)
- Oracle Database Appliance (1)
- Oracle Database Se2 (1)
- Oracle Database Standard Edition 2 (1)
- Oracle Database Upgrade (1)
- Oracle Database@Google Cloud (1)
- Oracle Exadata Smart Scan (1)
- Oracle Licensing (1)
- Oracle Linux Virtualization Manager (1)
- Oracle Oda (1)
- Oracle Openworld (1)
- Oracle Parallelism (1)
- Oracle RMAN (1)
- Oracle Rdbms (1)
- Oracle Real Application Clusters (1)
- Oracle Reports (1)
- Oracle Security (1)
- Oracle Wallet (1)
- Perfomrance (1)
- Performance Schema (1)
- Policy (1)
- Prompt Engineering (1)
- Public Cloud (1)
- Pythian News (1)
- Rdb (1)
- Replication Compatibility (1)
- Replication Error (1)
- Retail (1)
- Scaling Ir (1)
- Securing Sql Server (1)
- Security Compliance (1)
- Serverless Computing (1)
- Sso (1)
- Tenserflow (1)
- Teradata (1)
- Vertex AI (1)
- Vertica (1)
- Videos (1)
- Workspace Security (1)
- Xbstream (1)
- May 2025 (1)
- March 2025 (2)
- February 2025 (1)
- January 2025 (2)
- December 2024 (1)
- October 2024 (2)
- September 2024 (7)
- August 2024 (4)
- July 2024 (2)
- June 2024 (6)
- May 2024 (3)
- April 2024 (2)
- February 2024 (1)
- January 2024 (11)
- December 2023 (10)
- November 2023 (11)
- October 2023 (10)
- September 2023 (8)
- August 2023 (6)
- July 2023 (2)
- June 2023 (13)
- May 2023 (4)
- April 2023 (6)
- March 2023 (10)
- February 2023 (6)
- January 2023 (5)
- December 2022 (10)
- November 2022 (10)
- October 2022 (10)
- September 2022 (13)
- August 2022 (16)
- July 2022 (12)
- June 2022 (13)
- May 2022 (11)
- April 2022 (4)
- March 2022 (5)
- February 2022 (4)
- January 2022 (14)
- December 2021 (16)
- November 2021 (11)
- October 2021 (6)
- September 2021 (11)
- August 2021 (6)
- July 2021 (9)
- June 2021 (4)
- May 2021 (8)
- April 2021 (16)
- March 2021 (16)
- February 2021 (6)
- January 2021 (12)
- December 2020 (12)
- November 2020 (17)
- October 2020 (11)
- September 2020 (10)
- August 2020 (11)
- July 2020 (13)
- June 2020 (6)
- May 2020 (9)
- April 2020 (18)
- March 2020 (21)
- February 2020 (13)
- January 2020 (15)
- December 2019 (10)
- November 2019 (11)
- October 2019 (12)
- September 2019 (16)
- August 2019 (15)
- July 2019 (10)
- June 2019 (16)
- May 2019 (20)
- April 2019 (21)
- March 2019 (14)
- February 2019 (18)
- January 2019 (18)
- December 2018 (5)
- November 2018 (16)
- October 2018 (12)
- September 2018 (20)
- August 2018 (27)
- July 2018 (31)
- June 2018 (34)
- May 2018 (28)
- April 2018 (27)
- March 2018 (17)
- February 2018 (8)
- January 2018 (20)
- December 2017 (14)
- November 2017 (4)
- October 2017 (1)
- September 2017 (3)
- August 2017 (5)
- July 2017 (4)
- June 2017 (2)
- May 2017 (7)
- April 2017 (7)
- March 2017 (8)
- February 2017 (8)
- January 2017 (5)
- December 2016 (3)
- November 2016 (4)
- October 2016 (8)
- September 2016 (9)
- August 2016 (10)
- July 2016 (9)
- June 2016 (8)
- May 2016 (13)
- April 2016 (16)
- March 2016 (13)
- February 2016 (11)
- January 2016 (6)
- December 2015 (11)
- November 2015 (11)
- October 2015 (5)
- September 2015 (16)
- August 2015 (4)
- July 2015 (1)
- June 2015 (3)
- May 2015 (6)
- April 2015 (5)
- March 2015 (5)
- February 2015 (4)
- January 2015 (3)
- December 2014 (7)
- October 2014 (4)
- September 2014 (6)
- August 2014 (6)
- July 2014 (16)
- June 2014 (7)
- May 2014 (6)
- April 2014 (5)
- March 2014 (4)
- February 2014 (10)
- January 2014 (6)
- December 2013 (8)
- November 2013 (12)
- October 2013 (9)
- September 2013 (6)
- August 2013 (7)
- July 2013 (9)
- June 2013 (7)
- May 2013 (7)
- April 2013 (4)
- March 2013 (7)
- February 2013 (4)
- January 2013 (4)
- December 2012 (6)
- November 2012 (8)
- October 2012 (9)
- September 2012 (3)
- August 2012 (5)
- July 2012 (5)
- June 2012 (7)
- May 2012 (11)
- April 2012 (1)
- March 2012 (8)
- February 2012 (1)
- January 2012 (6)
- December 2011 (8)
- November 2011 (5)
- October 2011 (9)
- September 2011 (6)
- August 2011 (4)
- July 2011 (1)
- June 2011 (1)
- May 2011 (5)
- April 2011 (2)
- February 2011 (2)
- January 2011 (2)
- December 2010 (1)
- November 2010 (7)
- October 2010 (3)
- September 2010 (8)
- August 2010 (2)
- July 2010 (4)
- June 2010 (7)
- May 2010 (2)
- April 2010 (1)
- March 2010 (3)
- February 2010 (3)
- January 2010 (2)
- November 2009 (6)
- October 2009 (6)
- August 2009 (3)
- July 2009 (3)
- June 2009 (3)
- May 2009 (2)
- April 2009 (8)
- March 2009 (6)
- February 2009 (4)
- January 2009 (3)
- November 2008 (3)
- October 2008 (7)
- September 2008 (6)
- August 2008 (9)
- July 2008 (9)
- June 2008 (9)
- May 2008 (9)
- April 2008 (8)
- March 2008 (4)
- February 2008 (3)
- January 2008 (3)
- December 2007 (2)
- November 2007 (7)
- October 2007 (1)
- August 2007 (4)
- July 2007 (3)
- June 2007 (8)
- May 2007 (4)
- April 2007 (2)
- March 2007 (2)
- February 2007 (5)
- January 2007 (8)
- December 2006 (1)
- November 2006 (3)
- October 2006 (4)
- September 2006 (3)
- July 2006 (1)
- May 2006 (2)
- April 2006 (1)
- July 2005 (1)
No Comments Yet
Let us know what you think