Tagged Questions

0
votes
1answer
94 views
+100

Domains in SQL Server?

I've just been reading 'Give us Real Domains!' on SQL Server MVP Erland Sommarskog's SQL Server Wishlist. I was thinking of trying out CREATE TYPE with bound rules but was alarmed to learn that this …
2
votes
12answers
191 views
+100

Select uniques, and one of the doubles

I have a table with columns A, B and C. Column A might have duplicates. I need a query that will get me a resultset with unique values in column A, and I don't care which possible duplicate it takes. …
0
votes
3answers
103 views
+100

Update of AccessDatasource does nothing but has no error

My UPDATE command fails to change any date in the table while very similar SELECT and DELETE commands work. When I change the UpdateParameters to invalid choices, the code behind command throws an …
0
votes
3answers
222 views
+100

Can NVL Function be Cascaded?

can nvl() function be cascaded,...it was asked me in IBM interview .....and why????
1
vote
2answers
64 views
+100

Procedurally transform subquery into join

Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a syntactically …