특정 테이블의 컬럼 조회하기
별 것 아니긴 한데, 회사 동료가 쿼리 좀 만들어 달라기에 한번 해봤습니다. DECLARE @tablename sysname SET @tablename=‘companyinfo’ SELECT c.[name] AS column_name FROM dbo.sysobjects AS o WITH (READUNCOMMITTED) JOIN dbo.syscolumns AS…
별 것 아니긴 한데, 회사 동료가 쿼리 좀 만들어 달라기에 한번 해봤습니다. DECLARE @tablename sysname SET @tablename=‘companyinfo’ SELECT c.[name] AS column_name FROM dbo.sysobjects AS o WITH (READUNCOMMITTED) JOIN dbo.syscolumns AS…
원격 컴퓨터에 Trusted Connection을 할 수 없는 환경에서는 사용의 제한이 따르는군요. 즉 원격 컴퓨터의 이름이 아니라 IP Address를 넣어야 하는 경우엔 제대로 작동하지 않습니다. 각 컴퓨터의 설정에 따라 미묘하게 작동방식이…
When I first start test-driven development, I got in trouble. Assembly that I was developing used a configuration file named ‘app.config’. However, whenever I tested the functionality of my assembly,…
오늘 MCDBA 취득을 위한 첫걸음을 내딛었다. 내 입장에서는 가장 쉬운 시험을 통과한 것이라 자랑할 만한 것은 못된다. 사실 MCDBA 시험은 그다지 구체적인 사항까지 묻지 않는다. 그래서 많은 사람들이 족보만 보고…
이전에도 이와 관련된 글을 올렸었습니다. NUnit을 사용하는 환경에서 .Config 파일을 사용하는 응용프로그램이나 라이브러리를 제작한다면 반드시 알아두어야 하는 사항입니다. 아래 글을 오늘 Unit Test에 관한 글을 뒤지다가 찾았습니다. 저도 아래와 같은…
Framework 2.0에서는 C++에서의 템플릿과 같은 것이 제공되던데, 이것으로 이보다 나은 모듈 설계가 가능할 것 같군요 출처: 눈물빛의 자유공간 ArrayList 클래스의 매개 변수 없는 ToArray 메서드는 Object 형식의 배열을 반환합니다. Object…
With the help of a friendly member, his nickname is "Taek" , of "MSSQL User Group", I could find the useful newsgroup aggregation. There is a lot of information. Additionally…
Computed columns can only use constants, functions, and other columns in the same table. A computed column can't use a column of another table.
Finding Bugs There are many places where bugs can be found: 1. By the developer when they first write the code. 2. By the developer when they’re trying to get…