Viewing 15 posts - 46,786 through 46,800 (of 49,571 total)
Rollback segment?
That's an Oracle concept, not SQL server. SQL doesn't have rollback segments.
April 25, 2008 at 12:20 am
It's not a corruption message.
That's telling you that the OS ran short of memory (physical) and paged the SQL server process's working set to the swap file. It's pretty much...
April 25, 2008 at 12:06 am
Michael Earl (4/24/2008)
April 25, 2008 at 12:02 am
*steals soapbox*
And make sure that said backups are restorable. There's nothing worse that tellng management that 'Everything's fne, we have recent backups', then finding that said backups are not restorable
April 24, 2008 at 11:44 pm
matt stockham (4/24/2008)
April 24, 2008 at 11:40 pm
karthikeyan (4/24/2008)
it means select @Null = count(*) from #t1 where Age is null. do u agree till this point ?
No!
It means
select @Null = count(*) from #t1 where 'Age'...
April 24, 2008 at 11:40 pm
No. You can generalise my 2 column example to as many columns as you have in the index.
For example, a 3 column index (A, B, C) is most optimal for...
April 24, 2008 at 7:19 am
Scalar = single value
Hence, the where clause you had (@Nm IS NULL) is a scalar (single value) evaluation, because it's a single value (the contents of the variable) been compared...
April 24, 2008 at 7:11 am
Yes, and I did. See the last post on page 1.
If there's anything you're still not sure of, ask specifically.
April 24, 2008 at 6:35 am
I've seen a case where a person took the most-selectivel advice literally, and made the leading column of every index the primary key (an identity)
He was very curious as to...
April 24, 2008 at 5:58 am
Please don't cross post. Many of us read all the frums.
No replies to this thread please. Direct all replies to-
April 24, 2008 at 5:08 am
And some testing...
SET STATISTICS IO ON
GO
SET STATISTICS TIME ON
GO
CREATE TABLE TestingIndexOrder (
ID INT IDENTITY,
DayOfWeek smallint,
CustomerKey int
)
GO
insert INTO TestingIndexOrder (DayOfWeek, CustomerKey)
SELECT DATEPART(dw,DATEADD(dd,number, '1900/01/01')), FLOOR(RAND(number*5452)*1000)
FROM (
SELECT TOP 4000000 v1.number,...
April 24, 2008 at 4:13 am
If the values aren't in quotes, SQL interprets then as columns.
Try something like this (partial query only)
INSERT INTO ....
SELECT ''' + @EmployeeCode + ''', ....
Easiest way to find and...
April 24, 2008 at 2:11 am
In management studio, right click the database Tasks ->Generate scripts
Script everything out. Then run that script on your sQL 2000 server. Taht will create the shell of the DB. All...
April 24, 2008 at 12:46 am
If the database has never had a full backup, even in full recovery it won't keep the logs. There has to be a full backup taken before SQL starts retaining...
April 24, 2008 at 12:28 am
Viewing 15 posts - 46,786 through 46,800 (of 49,571 total)