Viewing 15 posts - 6,226 through 6,240 (of 7,597 total)
A CONVERT to format 101 will give us format "mm/dd/yyyy". Then, using STUFF, we can remove the "dd/", leaving you with what you want:
SELECT STUFF(CONVERT(varchar(10), GETDATE(), 101), 4, 3,...
February 7, 2014 at 1:47 pm
A basic maintenance plan is just terrible for large databases, because it rebuilds every table and every index regardless. You just can't waste that much I/O in a critical...
February 7, 2014 at 1:42 pm
Many of us prefer to generate such code from the table itself, something like below. Uncomment the EXEC(@sql) when ready to actually run the code:
USE css
DECLARE @nonrepeated_cols nvarchar(max)
DECLARE @repeated_cols...
February 7, 2014 at 11:42 am
You could use subqueries instead of joins, like this:
SELECT
FI.*,
(SELECT TOP (1) C.ClassName_FD
FROM DBA.Class_TB AS C...
February 6, 2014 at 4:14 pm
If you want just the company name returned, this should (will?) be more efficient:
SELECT [Company Name]
FROM dbo.CompanyInfo --#CompanyInfo
GROUP BY
[Company Name]
HAVING
MAX(CASE WHEN [Transaction...
February 3, 2014 at 12:10 pm
Be sure to add a:
SET NOCOUNT ON
to the start of the trigger:
CREATE TRIGGER ... ON ... AFTER|INSTEAD OF ...
AS
SET NOCOUNT ON
...
And for a very minor efficiency gain you should add...
January 29, 2014 at 12:59 pm
Michael Valentine Jones (1/29/2014)
Debora (1/28/2014)
delete from table
WHERE...
January 29, 2014 at 10:45 am
Luis Cazares (1/28/2014)
ScottPletcher (1/28/2014)
January 29, 2014 at 8:12 am
Don't convert to a datetime, just compare it as characters. Invalid data may still get through, but you can't easily at all correct invalid data on the fly in...
January 28, 2014 at 5:39 pm
Define the index based on how you will query it, and the cardinality of the keys.
If you will always specify the second column in the conditions for the...
January 24, 2014 at 2:53 pm
I think you can move the master db the same way for a cluster as you would for a stand-alone instance. Use the "SQL Server Configuration Manager" to put...
January 23, 2014 at 4:40 pm
For uniqueness across servers, you can also use a second value, which can often be just a smallint, that identifies the original server that assigned the id. That way,...
January 22, 2014 at 1:49 pm
You'll want indexes on the lookup guids. And, since they're guids, you'll need to rebuild the indexes fairly frequently. You should also strongly consider reducing the FILLFACTOR on...
January 22, 2014 at 11:37 am
If you can use online rebuild, it might be worth cancelling the current index create and running an online version.
Also, you should consider specifying other options -- or not --...
January 22, 2014 at 11:33 am
TheGreenShepherd (4/12/2012)
AddressParseStatus is nchar(1) and is used to indicate the value returned by our USPS validation software. It has pretty low cardinality, only 9 possible values. There are roughly 1B...
January 22, 2014 at 11:31 am
Viewing 15 posts - 6,226 through 6,240 (of 7,597 total)