Viewing 15 posts - 1,786 through 1,800 (of 8,416 total)
GilaMonster (8/2/2011)
I also pay around R400/month for my cellphone...
I have a prepay phone. It has a black-and-white screen, can make and receive calls (apparently) and also send and receive...
August 2, 2011 at 8:24 am
sjimmo (8/2/2011)
DBCC INDEXDEFRAG(master,spt_values, 1)
This example was mentioned earlier. spt_values is an ordinary table in the dbo schema:
SELECT t.type_desc
FROM master.sys.tables AS t
WHERE t.name = N'spt_values'
AND t.[schema_id] = 1
...that...
August 2, 2011 at 8:12 am
homebrew01 (8/2/2011)
Doesn't that mean it worked on a system table?
I guess it depends what you consider to be a 'system table'. The term is overloaded - some would regard...
August 2, 2011 at 8:05 am
sjimmo (8/2/2011)
August 2, 2011 at 7:40 am
sjimmo (8/2/2011)
August 2, 2011 at 7:00 am
paul.knibbs (8/2/2011)
August 2, 2011 at 6:25 am
I'm not sure we should be singling out Canadians here. If anything, the US situation is the exception, since SQL Server uses a SQL collation by default for the...
August 2, 2011 at 6:00 am
ningaraju.n (8/2/2011)
What is spatial index?
See this link: http://msdn.microsoft.com/en-us/library/bb895265.aspx
August 2, 2011 at 2:23 am
bitbucket-25253 (8/1/2011)
DBCC INDEXDEFRAG (Master,"dbo.spt_values",ix2_spt_values_nu_nc)DBCC INDEXDEFRAG (AdventureWorks_regular,"cdc.ddl_history",ddl_history_clustered_idx)-- a system table in the AdventureWorks_regular DB
Neither of those are system tables, they are ordinary tables that happen to be used by the system...
August 2, 2011 at 1:12 am
Indianrock (8/1/2011)
Some have suggested setting forced parameterization on in MSDB to help with this. Any downsides to that?
It's worked fine for me in the past. I also wouldn't...
August 1, 2011 at 9:23 pm
brian118 (8/1/2011)
To avoid long term maintenance of unused statistics, SQL Server 2000 ages the automatically created statistics (only those that are...
August 1, 2011 at 9:03 pm
paul.knibbs (8/1/2011)
August 1, 2011 at 6:25 am
cengland0 (8/1/2011)
My guess is that it works and returns:Hello WorldHello World
It returns 'Hello World ' in a SELECT statement, but 'Hello World Hello World' when using PRINT.
CHAR(0) is often used...
August 1, 2011 at 6:23 am
Eugene Elutin (8/1/2011)
DECLARE @var varchar(max);
SET @var = 'Hello...
August 1, 2011 at 6:05 am
David in .AU (7/31/2011)
Replace of char(0) does not work in DB with Windows collation
I know it isn't exactly...
August 1, 2011 at 1:05 am
Viewing 15 posts - 1,786 through 1,800 (of 8,416 total)