Viewing 15 posts - 166 through 180 (of 390 total)
Is this what you meant?
The times went down from 12 seconds to 6-7 seconds 🙂
Can you see anything i did wrong, or any other improvements?
Thanks!
USE [JobPortal]
GO
/****** Object: StoredProcedure...
September 27, 2011 at 3:33 pm
Thanks, i will keep playing with it, until i figure it out!
September 26, 2011 at 1:23 pm
I'm not quite sure if this is what Gail meant, but i have a couple of errors and i'm not sure how to fix them.
Msg 156, Level 15, State 1,...
September 26, 2011 at 12:10 pm
GilaMonster (9/26/2011)
September 26, 2011 at 10:56 am
USE [JobPortal]
GO
/****** Object: StoredProcedure [dbo].[GetAllResumesSearchedDynamicQuery2FTI9-26-11] Script Date: 09/26/2011 12:29:36 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- ============================================= ...
September 26, 2011 at 10:37 am
I am using RAID 10 for the data files
RAID1 for program files
RAID1 for log files
RAID0 for TempDB files
Thanks for the feedback everyone!
September 26, 2011 at 8:34 am
I have a variety of servers running DC's and Exchange 2010, 2007, 2003, CRM 2011, and two servers running seperate versions of SQL Server 2008 for different applications.
I have one...
September 26, 2011 at 8:07 am
You have given me some ideas, let me try a different method.
Thanks
September 20, 2011 at 3:34 pm
I did an insert into, but it adds the data to the end of the existing data, which is why i need to do an sql update, not a sql...
September 20, 2011 at 3:28 pm
The common field is the Id.
I am trying to create a new table with data from another database, and add the Id into the new table.
September 20, 2011 at 3:16 pm
Is this a good reindex query?
Thanks
USE DBName
DECLARE @TableName varchar(255)
DECLARE TableCursor CURSOR FOR
SELECT table_name FROM information_schema.tables
WHERE table_type = 'base table'
OPEN TableCursor
FETCH NEXT FROM...
September 13, 2011 at 1:41 pm
Thanks!
September 13, 2011 at 12:13 pm
FinalRowCount BETWEEN @fromRec AND @toRec
I keep getting invalid column name(FinalRowCount) on this line. Any idea why?
Thanks!
July 18, 2011 at 6:10 pm
jwbart06 (7/18/2011)
@fromRec int, -1
@toRec int -10
you are going to get row_numbers 1 through 10
on the between statement @fromRec and @toRec
So your results are correct, there is no way to...
July 18, 2011 at 4:12 pm
The second set of records was:
FromRec = 1
ToRec = 20
Thanks!
July 18, 2011 at 4:03 pm
Viewing 15 posts - 166 through 180 (of 390 total)