Viewing 15 posts - 61 through 75 (of 1,137 total)
steveb. (11/5/2009)
But I guess you know what...
November 5, 2009 at 5:47 am
steveb. (11/5/2009)
SELECT SUBSTRing
(description,
charindex ('[', description) + 1,
charindex ( ']',description ) - charindex ('[', 'he[lff]lo') -1
)
FROM PublishItem
WHERE description like '%Doc No%' ...
November 5, 2009 at 5:39 am
the round function will do that, amongst others.
select round(4.4,0)
4.0
select round(4.6,0)
5.0
November 5, 2009 at 5:33 am
SELECT SUBSTRing
(description,charindex ('[', description),charindex (']', description)
)
FROM PublishItem
WHERE description like '%Doc No%'
November 5, 2009 at 5:25 am
select substring('12345678[abcdef]hijkl',
CHARINDEX('[','12345678[abcdef]hijkl'),CHARINDEX(']','12345678[abcdef]hijkl'))
November 5, 2009 at 5:20 am
shanila_minnu (11/5/2009)
SELECT SUBSTRing
(description,
select charindex ('[',...
November 5, 2009 at 5:16 am
If i understand you correctly you want to remove the decimal point, what do you want to do to the answer
do you want to just remove the .5 or do...
November 5, 2009 at 5:10 am
y.koteswarrao-652921 (11/5/2009)
Hi,how to determine the backup is successfully completed?
Thanks
koteswar Rao
You can check the sql log as first point of call.
November 5, 2009 at 5:03 am
I wish people would distinguish between a consultant and a contractor, there is a world of difference and it annoys me no end. most people I know associate a consultant...
November 5, 2009 at 4:09 am
first off, is sql server still running. if so allocate more space to the database. if not free more space on the drive.
November 5, 2009 at 2:34 am
suvorav (11/5/2009)
There is heavily loaded OLTP system under Sql Server 2008 Standart Edition. Database has some big tables. My question is about hard disk configuration. Database has problems with...
November 5, 2009 at 2:32 am
Viewing 15 posts - 61 through 75 (of 1,137 total)