Viewing 15 posts - 31 through 45 (of 49 total)
both of you are great.
all answers is my inspiration
March 4, 2010 at 10:19 am
ray-SQL (3/3/2010)
CONSTRAINT [tPickPointD01] UNIQUE NONCLUSTERED
(
[tpphidx] ASC,
[desn] ASC
)
so looks like the update...
March 3, 2010 at 9:10 pm
Ok guys. Felt better now.
For me, XML parameter will hurt performance it's a myth
March 3, 2010 at 5:08 am
ALZDBA (3/2/2010)
1) avoid the xml ! it needs to be converted in a sql usable format every time you use it
It's true using XML as input parameter will hurt the...
March 2, 2010 at 6:55 am
ALZDBA (3/2/2010)
Keep in mind, you need to check if it actually updated a row (@@rowcount)
Because if it didn't, you'll have...
March 2, 2010 at 6:26 am
oh. my brain problem actually. he..he
February 26, 2010 at 8:27 am
Ok guys. Me understood now. cheers ..
February 26, 2010 at 12:52 am
tq to all. all your answer is my inspiration.
February 24, 2010 at 3:13 pm
The tables have been segmented because of performance issue. Me going to using Partitioned Views technology.
How about that?
February 24, 2010 at 4:55 am
NewBeeSQL (2/22/2010)
declare @tblStr varchar(max)
declare @intMnth int
set @intMnth =1
while @intmnth < 12
begin
set @tblStr = 'CREATE TABLE [dbo].[DERInfo_2010'+cast(@intmnth as varchar(10))+'](
[trnxid] [int] IDENTITY(1,1) NOT NULL,
[DDate] [datetime] NOT...
February 23, 2010 at 4:00 am
This query really new to me.
Is that ok, if me dont want to store this departtimes into triptimer table? It's look enough to store the departure date and departure...
February 15, 2010 at 1:05 am
Me cannot imagine how this 2 sql statment can related.
Really looking for help
February 14, 2010 at 1:26 pm
lmu92 (2/14/2010)
How to generate tid? tid is a running no with prefix t000000000x
It depends. You could use ROW_NUMBER and a temp table or, if you need to get the ID...
February 14, 2010 at 11:57 am
lmu92 (2/14/2010)
Do you have difficulties to shred the xml data?
If so, the following might help you.
If you want us to do the complete work for...
February 14, 2010 at 9:56 am
Viewing 15 posts - 31 through 45 (of 49 total)