Viewing 15 posts - 46 through 60 (of 136 total)
GilaMonster (4/2/2013)
http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-1/
Thanks, i've already seen this links before and practised some of the suggestions. My question is that can i make my queries run more faster, since they are online...
April 2, 2013 at 11:29 am
Lowell (4/2/2013)
here's a quick list of some...
April 2, 2013 at 11:26 am
Guys, i'm getting more confused here,
which way i'm i to go?
March 26, 2013 at 4:31 pm
Thanks Kevin, are u suggesting i use Triggers with a unique id?
You said you have been doing something similar, can u please shed more light
Thanks
Tim
March 26, 2013 at 8:57 am
lol, your reply made me laugh, i.e the its not worth it part.
Alright, i'll google replication and see what i can come up with.
thanks
Tim
March 25, 2013 at 10:59 am
This is the query
declare @ids varchar(8000),
@Station nvarchar(4),
@BeginDate datetime,
@EndDate datetime,
@BeginTime nvarchar(8),
@EndTime nvarchar(8),
@BeginTime1 nvarchar(8),
@EndTime1 nvarchar(8),
@BeginTime2 nvarchar(8),
@EndTime2 nvarchar(8),
@Scheduled int,
@Duration int,
@Program nvarchar(355),
@product nvarchar(6),
@brand-2...
September 15, 2012 at 10:03 am
Thanks Koen,
I did this but its complaining incorrect syntax near the keyword 'AS'
MERGE Products AS TARGET
USING UpdatedProducts AS SOURCE
ON (TARGET.ProductID = SOURCE.ProductID)
--When records are matched, update
--the records...
December 16, 2011 at 6:41 am
Thanks Kingston,
Sorry that i'm getting to you this late, this are the DDL and the sample datas:
--This is the source Table
CREATE TABLE [dbo].[LagosTelNov](
[DATE] [datetime] NULL,
[TIME] [nvarchar](max# NULL,
[LENGHT] [float] NULL,
[BRAND] [nvarchar]#max#...
December 16, 2011 at 6:25 am
Thanks Kingston,
Sorry that i'm getting to you this late, this are the DDL and the sample datas:
--This is the source Table
CREATE TABLE [dbo].[LagosTelNov](
[DATE] [datetime] NULL,
[TIME] [nvarchar](max) NULL,
[LENGHT] [float] NULL,
[BRAND] [nvarchar](max)...
December 16, 2011 at 6:24 am
Thanks Guys for your helps, i'll check on what u posted and get back to u. Thanks
May 27, 2011 at 8:16 am
[quote-0
Has this application been upgraded from 2000 to 2005 on that server? If so did you reindex and update the stats?
Also 2 GB on a prod server is quite...
May 27, 2011 at 3:47 am
john jin (5/26/2011)
Would you mind to show the stored procedure androws of those tables involved in this stored proc
I have thousands of stored procedures running, so i would not...
May 27, 2011 at 3:43 am
cpu is 2ghz, memory is 2gb, harddisk space 500gb, virtual memory starting at 2038 and ending at 4000mb. So any suggestions please.
Thanks
May 26, 2011 at 6:13 pm
Hope you intend to post the solution so that other who may have a similar problem can learn from you. In other words give back to the community...
March 27, 2011 at 10:43 am
Thanks Jeff, i already solved the problem and only forgot to post it here. Thanks so much for your reply, it shows u care. I appreciate.
March 26, 2011 at 2:25 pm
Viewing 15 posts - 46 through 60 (of 136 total)