보관함

Database Index 타지 않는 경우

Index를 사용한 필드의 조건 검색이 not, <, > 일 경우 Index를 사용하지 않습니다. ( => , <= , =, Between 은 사용이 가능합니다.)Index를 사용한 필드의 조건 검색이 like ‘%값’ 혹은 ‘%값%’인 경우 Index를 사용하지 않습니다. (like ‘값%’은 사용 가능 합니다.)Index를 사용한 필드의 조건 검색이 다른 필드와 비교일 경우 Index를 사용하지 않습니다. (where 컬럼1=컬럼2) order […]

Solution 아래 여러 Project가 있는데 자동 배포 하려고 했더니 Error가 딱~~~

Error : More than one package matched with specified pattern: D:\a\r1\a\**\*.zip. Please restrain the search pattern.

DevOps > Pipelines > Releases > Project – CD > Edit > Tasks > Deploy Azure App Service > Package or folder를 수정

$(System.DefaultWorkingDirectory)**\*.zip -> $(System.DefaultWorkingDirectory)**\프로젝트명.zip

[…]

macos bash ls color

.bash_profile

1. directory 2. symbolic link 3. socket 4. pipe 5. executable 6. block special 7. character special 8. executable with setuid bit set 9. executable with setgid bit set 10. directory writable to others, with sticky bit 11. directory writable to others, without sticky bit

a. black b. red c. green d. brown […]