Viewing 15 posts - 361 through 375 (of 596 total)
As mentioned in the MS article posted above by Andy, you can run full-text search without BUILTIN\Administrators by creating a Windows login for NT Authority\System and adding it to the...
July 1, 2005 at 7:24 am
The function will not compare values, it will convert all values to a common format. For example:
FN('1-1-2') could return '001-001-002'
FN(1-1-2-1) could return '001-001-002-001'
FN('A-1-2') could return 'A-001-002'
FN('A-1-10') could return 'A-001-010'
Of course,...
June 23, 2005 at 7:07 am
I'm not sure exactly what you want to do, but you might want to look at the Microsoft SQL Server Web Data Administrator:
June 22, 2005 at 6:30 am
You could add another integer column called displayOrder and populate it so that the rows are displayed in your "custom" order. Of course, any applications would need to be modified to...
June 20, 2005 at 1:03 pm
As Farrell pointed out, first look at your use of the STR() function. This function only accepts the float data type. You also used the STR() function like this:
WHEN provcat =...
June 17, 2005 at 8:22 am
Be careful using IsNumeric() in cases like this. IsNumeric() will return 1 (true) for strings which contain numbers in scientific notation, such as the following:
IF IsNumeric('333D33') = 1
PRINT 'Value...
June 16, 2005 at 6:58 am
Here's the transcript of the speech:
http://news-service.stanford.edu/news/2005/june15/jobs-061505
Edit: Sorry, this is the prepared remarks, not a transcript of what he actually said.
June 15, 2005 at 6:28 am
Be aware that if you script your stored procedures using EM, they are generated in alphabetical order (case sensative, upper case first, then lower case).
If you have any nested stored...
June 7, 2005 at 7:51 am
Bill, refer to Adam's previous post that contains this code snippet:
SELECT CHAR(number)
FROM master..spt_values
WHERE type = 'p'
AND number >= 34
ORDER BY CHAR(number) COLLATE SQL_Latin1_General_Cp1_CI_AS
If you change it to:
SELECT number, CHAR(number)
FROM master..spt_values
WHERE...
June 4, 2005 at 7:24 am
Tim,
You would think so, since ASCII codes 58 thru 64 are punctuation characters. It seems that with certain collations, this does not apply. Try this:
DECLARE @var varchar(1)
June 2, 2005 at 7:21 am
Here's one way. Instead of GetDate(), store this:
CONVERT(datetime, CONVERT(varchar(8), GetDate(), 112))
May 31, 2005 at 7:55 am
binu john,
For more about the command, just search the internet for "DBCC IND". Here's one link I got from google:
http://www.sql-server-performance.com/ac_sql_server_2000_undocumented_dbcc.asp
Also, try this as an example:
CREATE TABLE #ind
(
PageFID INT
,...
May 27, 2005 at 8:19 am
As Phil pointed out, it looks like the character is being converted to 7-bit ASCII (the high order bit is set to zero). However, the character Char(214) is supported by...
May 20, 2005 at 7:23 am
Sounds like a network problem, not a SQL Server problem, such as a mismatch in the Duplex Mode and Media Type settings of the network cards. Could also be a problem...
May 19, 2005 at 6:46 am
Viewing 15 posts - 361 through 375 (of 596 total)