Search Results

0
votes

Validating string lengths based on related database columns

There's usually schema info that you can request from the database to find out the maximum length of a given column. Take a look at SqlDataReader.GetSchemaTable(). It'll return the column …
3
votes

Select only half the records

In oracle you can use the ROWNUM psuedocolumn. I believe in sql server you can use TOP (e.g., select TOP 50 PERCENT * from table) …
1
vote

My IN clause leads to a full scan of an index in T-SQL. What can I do?

An index range scan is pretty fast. There's usually a lot less data in the index than in the table and there's a much better chance that the index is already in memory. I can't blame you f …
0
votes

Trim first two characters from year of GETDATE()

Isn't there a convert format that will only print the last 2 digits of the year? …
0
votes

Multiple Counts in SQL Query

What quassnoi said. …
0
votes

Using stored procedures results in update statement

Can you make the created_in_variant a computed field? …
0
votes

Print result set without cursor

If you want to print them from a bat file you can use osql.exe to execute the query - the results will be displayed to the screen. You may want to use trunc and/or set colwidth settings so that it …
0
votes

TSQL Group By with an “OR” ?

GROUP BY doesn't support OR - it's implicitly AND and must include every non-aggregator in the select list. …