Viewing 15 posts - 91 through 105 (of 206 total)
IN that case, maybe you should think about a FUL TEXT index. With that you can use the CONTAINS clause:
WHERE CONTAINS ( field1, 'blah' or '%' )
DAB
March 20, 2008 at 8:24 am
YOu said AWE is enabled. In the boot.ini, /PEA and /3GB? Has anyone added anything to the /USERVA switch in boot.ini?
DAB
March 19, 2008 at 7:38 pm
Colin Betteley (3/19/2008)
I need to pick up a csv file transfer the data to SQL Server and then rename the csv file - adding a date to...
March 19, 2008 at 7:15 pm
Like Lynn said this looks like it's from a trace. Not only that but from some reporting tool (Crystal, RS) from another server. IF this is indeed from a trace,...
March 18, 2008 at 8:00 pm
I don't mean to sound condescending but...
Based on your sample data, 0.02343 , that values is NOT less than zero. Values such as -1, -3.1415 are less than zero. Typically...
March 18, 2008 at 2:59 pm
Yes Jason. Check out this linke http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=64044 for the full scans/sec and other acceptable counter values.
DAB
March 18, 2008 at 11:04 am
Hans is correct. If you'll indent the joins based on the left parenthesis you will find missing right parenthesis before the GROUP BY clause.
DAB
March 18, 2008 at 10:58 am
ALTER PROCEDURE [dbo].[uspFraudReport]
-- Add the parameters for the stored procedure here
(@StartTime datetime = null,
@EndTime datetime = null)
AS
SET NOCOUNT ON
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
Declare ...
March 18, 2008 at 10:20 am
One other item to consider in SQL 2005 stored procs is ths use of fully qualified names. So will improve cache hit/miss events.
DAB
March 18, 2008 at 10:10 am
As far as PASS sessions this year, abstracts to PASS are due by March 28th so nothing is set.
DAB
March 18, 2008 at 9:04 am
Try this...
SELECT g.groupID, cfdn.CustomFieldID,
operand = CASE
...
March 18, 2008 at 8:56 am
Not on this forum. This is spcifically for Microsoft SQL Server. However, you can find all that you need at http://dev.mysql.com/.
Due to my experience over the last several years in...
March 17, 2008 at 4:41 pm
Viewing 15 posts - 91 through 105 (of 206 total)