我正在尝试使用网络外的 Token 方法访问 kubernetes Dashboard。
我运行了这两个命令来获取令牌
kubectl -n kube-system get secret
kubectl -n kube-system describe secret replicaset-controller-token-2p4fk
Run Code Online (Sandbox Code Playgroud)
将粘贴输出令牌复制到 K8 登录页面。
当我单击“登录”按钮(页面未加载)时,我收到此错误浏览器控制台。
我正在使用以下命令在内部服务器上运行 k8:
kubectl proxy --address 0.0.0.0 --accept-hosts '.*'
Run Code Online (Sandbox Code Playgroud)
并尝试从外部网络访问 k8 UI 控制台。
Failed to load resource: the server responded with a status of 401 (Unauthorized)
vendor.bd425c26.js:6 Error during global settings reload: Object
:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/api/v1/rbac/status:1 Failed to load resource: the server responded with a status of 401 (Unauthorized)
vendor.bd425c26.js:6 Possibly unhandled rejection: {"data":"MSG_LOGIN_UNAUTHORIZED_ERROR\n","status":401,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/v1/rbac/status","headers":{"Accept":"application/json, text/plain, */*"}},"statusText":"Unauthorized","xhrStatus":"complete","resource":{}}
Run Code Online (Sandbox Code Playgroud)
我什至尝试了这些步骤,但不幸的是,单击“登录”按钮时页面未加载。
$ kubectl -n …Run Code Online (Sandbox Code Playgroud) 我已经开始使用 Google 的 Data Studio,我发现只需很少或根本不需要编码技能,就可以轻松地将 Excel 数据转换为直观的业务仪表板。
但我这里有一个问题,每当我尝试连接到 Mysql DB(在我的本地系统上运行)时,我都会遇到错误。
连接详情:
我尝试用谷歌搜索错误代码,但没有成功。
但我可以从 Mysql Workbench 访问本地 Mysql 服务器。
我在这里缺少什么?数据工作室英雄?
提前致谢。
我试图在表格中隐藏一些数据,但我不能这样做,因为我找不到使用varchar列的方法.我有这张桌子:
declare @table table(name VARCHAR(50) not null, occupation VARCHAR(MAX))
insert into @table values ('A','Doctor')
insert into @table values ('B','Doctor')
insert into @table values ('A','Professor')
insert into @table values ('A','Singer')
insert into @table values ('A','Actor')
SELECT
CASE WHEN occupation = 'Doctor' THEN NAME END AS Doctor,
CASE WHEN occupation = 'Professor' THEN NAME END AS Professor,
CASE WHEN occupation = 'Singer' THEN NAME END AS Singer,
CASE WHEN occupation = 'Actor' THEN NAME END AS Actor
FROM @table
Run Code Online (Sandbox Code Playgroud)
输出:
Doctor Professor …Run Code Online (Sandbox Code Playgroud) 我有如下所示的数据:
name SAL1 SAL2 SAL3
A 10 20 30
B 11 21 31
C 12 22 32
D 13 23 33
Run Code Online (Sandbox Code Playgroud)
我试图得到一个额外的计算列,即
10/25 *100
[SAL1 of A/Sum(TOP 2 Sal1 ORDER BY Sal1 DESC)]而不是考虑分母中所有记录的总和,我只需要考虑前2 sal desc
分别用于其余行.随后与其他列.
name SAL_calculated
A 40
B 44
C 48
D 52
Run Code Online (Sandbox Code Playgroud)
并按Asc的名称列和其他列的Desc进行排序
我有.sql超过60个表的DDL脚本文件.我正在尝试将脚本复制粘贴到SQL Developer中,连接到"Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production"的数据库.
示例DDL脚本:
CREATE TABLE UserName."Table_Name"
( "Col1" NUMBER(*,0),
"Col2" VARCHAR2(50 BYTE),
"Col3" VARCHAR2(50 BYTE)
) SEGMENT CREATION DEFERRED
PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
TABLESPACE "USERS" ;
Error report -
SQL Error: ORA-00439: feature not enabled: Deferred Segment Creation
00439. 00000 - "feature not enabled: %s"
*Cause: The specified feature is not enabled.
*Action: Do not attempt to use this feature.
Run Code Online (Sandbox Code Playgroud)
如果我SEGMENT CREATION …
我发现,
$ : Matches the end of the line
\s: Matches whitespace
\S: Matches any non-whitespace character
Run Code Online (Sandbox Code Playgroud)
但是\$究竟做了什么?