Viewing 7 posts - 1 through 7 (of 7 total)
Hi Steve
Sorry I still don't understand what you mean by
" write code that looks for count(lookup value) = count(*)"
Thanks
Steve
February 24, 2014 at 9:52 am
Hi
Before any fixes that you think are "essential", make sure your manager agrees the priorities, in particular new work vs schema fixes, backups, reindexing or DBCCs etc
Only do essential fixes...
November 21, 2012 at 3:50 am
PS
Sorry, this time including some sample data
CREATE TABLE [dbo].[MyStatus](
[Status_Id] [int] IDENTITY(1,1) PRIMARY KEY NOT NULL,
[StatusDesc] [varchar](25) NULL,
)
INSERT INTO MyStatus VALUES ('Active')
INSERT INTO MyStatus VALUES ('OnHold')
INSERT INTO MyStatus VALUES...
September 28, 2012 at 7:41 am
Hi Suresh,
Thanks for your post but there are some possible problems if you start to use ORDER BY.
See
for example
DECLARE @MyStatusList VARCHAR(MAX)
SET @MyStatusList = ''
SELECT @MyStatusList = @MyStatusList...
September 28, 2012 at 7:03 am
-- Along the same lines, this is a very simple way of listing invalid data (allowing -_,;@' in the email column)
DECLARE @match VARCHAR(30)
SET @match = '%[^a-zA-Z0-9@.,;!-!_!'''']%'
SELECT email ...
May 10, 2012 at 3:49 am
Hi Steve
Are you missing the data for the buffer cache hit ratio graph?
Steve
December 9, 2010 at 3:12 am
For years I have tried to get silence, finding that music (and all other types of noise) really cuts into my ability to focus.
Recently however, I discovered that white noise...
December 3, 2010 at 4:50 am
Viewing 7 posts - 1 through 7 (of 7 total)