Viewing 15 posts - 4,216 through 4,230 (of 8,416 total)
vaibhav.tiwari (4/5/2010)
April 5, 2010 at 7:10 am
SELECT SQ.Questionid,
cont = MAX(CASE WHEN type = 'Cont.' THEN checked ELSE 0 END),
sup...
April 5, 2010 at 7:06 am
Lowell (4/5/2010)
ironically, since the OP posted to the forum, he gets another email every time we post to the thread...
Must be annoying :laugh:
April 5, 2010 at 6:43 am
bross 52202 (4/5/2010)
Do geeks always have this much trouble getting a date?!
LMAO
April 5, 2010 at 6:39 am
Tom.Thomson (4/5/2010)
show me a DBA or a programmer who has never made a mistake...
I never make mistokes Tom :hehe:
April 5, 2010 at 6:34 am
Updated implementation:
DECLARE @String NVARCHAR(MAX);
SET @String = N'======Heading========== some phrase ===============bottom line==============';
SELECT extract =
SUBSTRING(data, Start.pos, Length.value)
FROM ...
April 5, 2010 at 6:32 am
Would have helped if the extra information had been in the first post.
April 5, 2010 at 6:14 am
Post some sample INSERT statements to populate your table with sample data, and show the exact output you expect.
Thanks.
April 5, 2010 at 6:07 am
:ermm: Not a running total problem.
DECLARE @Sample
TABLE (
product_id CHAR(7) NOT NULL,
entity_id...
April 5, 2010 at 5:54 am
DECLARE @Sample
TABLE (
Questionid INTEGER NOT NULL,
type ...
April 5, 2010 at 5:39 am
Saravanan T (4/5/2010)
Thks for your time . Will Update statistics also increase the log size?
Update statistics does not perform any logged operations, so no.
April 5, 2010 at 4:55 am
DECLARE @String VARCHAR(8000),
@Header VARCHAR(8000),
@Footer VARCHAR(8000);
SET @String = '======Heading========== some phrase ===============bottom line==============';
SELECT @Header...
April 5, 2010 at 4:49 am
karthikeyan-444867 (4/5/2010)
The REPLACE solution can be made to run an order of magnitude faster if we use an in-line table-valued function instead of an evil scalar function:
I am not getting...
April 5, 2010 at 4:32 am
Viewing 15 posts - 4,216 through 4,230 (of 8,416 total)