Viewing 15 posts - 31 through 45 (of 59 total)
Lynn Pettis (4/10/2014)
April 10, 2014 at 5:20 pm
Steve Jones - SSC Editor (3/19/2013)
The second article talks about imports: http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/72493/
When you do the import, you'll need to then separate out the various parts...
March 19, 2013 at 7:07 pm
Sean Lange (3/19/2013)
Probably the easiest way to import this type of thing is with SSIS. Check out the stairways series here. http://www.sqlservercentral.com/stairway/72494/[/url]
tq sir.
Just have a look the SSIS. My...
March 19, 2013 at 6:11 pm
This is my Index so far
CREATE NONCLUSTERED INDEX [dbo.tbl_Penyata_IX1] ON [dbo].[tbl_Penyata]
(
[AktPst] ASC,
[edcode] ASC
)
INCLUDE ( [nogaji],
[TkhTransaksi],
[edAmount]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY =...
January 15, 2013 at 11:55 am
GilaMonster (1/15/2013)
Also, you can simplify that query as:
select
eln_payslip,
edamount
from dbo.tbl_Penyata
where nogaji='047911' and...
January 15, 2013 at 11:06 am
Michael Valentine Jones (1/15/2013)
It will probably be far faster to filter data in SQL Server.
tq sir
January 15, 2013 at 9:08 am
Adi Cohn-120898 (12/26/2012)
When SQL Server has to read very small tables, it many times uses table scan. In such small size, it doesn't make a difference.Adi
Sir,
If large table,...
December 26, 2012 at 6:44 am
Dear Mr Dwain,
Your new T-SQL, look's ok. I will let you know, if something weird happen
tq so much
April 29, 2012 at 8:21 pm
Jeff Moden (4/28/2012)
idyana (4/28/2012)
Whatever people said about your solutions, I dont care. For me, you are the best. You have helped me. they do not help but criticize only
For...
April 28, 2012 at 9:36 pm
Recall that I said it may cause some people who didn't get their first choice to miss getting assigned to a program entirely? I have an idea that I...
April 28, 2012 at 12:52 am
Kindest dwain.c,
Whatever people said about your solutions, I dont care. For me, you are the best. You have helped me. they do not help but criticize only
For me, you're my...
April 28, 2012 at 12:32 am
Viewing 15 posts - 31 through 45 (of 59 total)