Viewing 15 posts - 7,576 through 7,590 (of 7,614 total)
>> I suggest you make them both nonclustered indexes. Your inserts and queries will move along alot faster. <<
That depends on the queries. For example, if you always specify a...
May 23, 2007 at 8:21 am
Very interesting article, definitely worth seeing.
Btw, though, shouldn't the columns be NCHAR(2) instead of NVARCHAR(2)? It's a waste of space and processing overhead to make a 2-byte column variable.
May 21, 2007 at 7:59 am
Excellent article!
Regarding the commission example, to consider something specific, I would prefer to explicitly know that a commission does not apply. Therefore, I might add a "IsCommissionEligible" BIT column. This is, most...
April 10, 2007 at 10:11 am
You also need to add an ORDER BY, otherwise you can't be sure the code rows will be returned in sequence:
SELECT ...
ORDER BY id, colid
March 23, 2007 at 7:52 am
If the base table is small, you can do this:
SELECT *
FROM #tmpSumTest
UNION ALL
SELECT CAST(SUM(number) AS DECIMAL(19, 8))
FROM #tmpSumTest
If not small, you can make the main query a subquery, adding...
March 22, 2007 at 7:43 am
Yes, you'll have to change the query for that.
To get tables with '%school%' in them:
1) AND must match all the other criteria, do this:
WHERE o.name LIKE N'%school%'
AND o.xtype = ''U'' AND o.name...
March 5, 2007 at 12:08 pm
I assume you know the column type is char/varchar/nchar/nvarchar. If not, remove the check for "%char%"; if you know it's varchar, naturally you can change it to "%varchar%".
For one db:
SELECT...
March 1, 2007 at 8:37 am
> Kill connections is pretty good. <
No, it's not - ALTER DATABASE should be used.
And if you really want to issue specific KILLs, you can do it something...
November 28, 2006 at 9:27 am
Try looking at table "syscolumns". It includes not just table columns but also stored procedure columns
.
For example:
SELECT *
FROM syscolumns WITH (NOLOCK)
WHERE id...
November 27, 2006 at 3:17 pm
Change @Qry from VARCHAR(5000) to VARCHAR(8000).
November 27, 2006 at 3:14 pm
I too don't like a "t"|"tb[l]" prefix, no least of all because a view can be changed to a table and vice-versa. Column prefixes, of any type, are even worse.
I do...
November 14, 2006 at 10:01 am
No, "wrong situation" refers primarily to an application being added to the server. And not necessarily a full-blown business app either.
Say, instead, Java applets are added to the server. ...
August 21, 2006 at 11:10 am
>> How much memory does SQL use on startup? <<
I disagree about the relevance of this q. This knowledge is not only useful but vital for a senior DBA. Otherwise,...
August 21, 2006 at 9:18 am
Viewing 15 posts - 7,576 through 7,590 (of 7,614 total)