Viewing 15 posts - 2,101 through 2,115 (of 2,463 total)
subbarayudu.net 37258 (3/10/2010)
Any one idea about snap shot and sparse files, please come to this discussion RegardsSubbarayudu
see of it helps you
http://www.sqlservercentral.com/Forums/Topic489120-149-1.aspx
March 10, 2010 at 7:13 am
Rob44 (3/8/2010)
Let's suppose the command returns 0! What's the next step if the rebuild of the index in the maintenance plan is unsuccessful?
We can give manual run to ALTER INDEX...
March 10, 2010 at 6:22 am
Jeff Moden (3/9/2010)
See the following:
Very nice post
March 10, 2010 at 3:42 am
pshaship (3/9/2010)
Declare @DBName varchar(50)
Set @DBName = 'YOURDBNAME'
Select Db_name(ps.database_id) as DBName,object_name(ps.object_id) as TableName,I.name as IndexName
,sum(isnull(ps.avg_record_size_in_bytes,0) * isnull(ps.record_count,0)) as IndexSizeBytes
...
March 10, 2010 at 3:37 am
try this DECLARE @Ranges_1 TABLE (
[ctr] int identity ,
[Id] int NOT NULL,
[varchar](3) NOT NULL,
[dos] int NOT NULL,
[paid] float NOT NULL
)
INSERT INTO @Ranges_1 VALUES (1, '123', '20', '10.75');
INSERT INTO @Ranges_1...
March 10, 2010 at 3:26 am
Saravanan_tvr (3/10/2010)
Select sum(stock1),
(Select sum(stock2),item_no from table1
where date = '2010-01-02' group by item_no) as [stock on hand],
item_no...
March 10, 2010 at 2:59 am
sinamora (3/9/2010)
12 3 ...
March 10, 2010 at 2:52 am
You should need to review the error log file...if any database in recovery mode then you might get this error. if you can post the error log file where you...
March 9, 2010 at 10:52 pm
Post your table and index definition along with exec. plan
March 9, 2010 at 10:51 pm
March 8, 2010 at 7:47 am
ajarman (3/8/2010)
the job failed with 'unable to connect to SQL server...'.In the SQL error logfile I see:-
Are other jobs running fine ?
can u using the same (this job's)account for...
March 8, 2010 at 7:36 am
Thanks:-)
March 8, 2010 at 12:34 am
arr.nagaraj (3/7/2010)
As a quick fix, you can use the fourth option 'Be made using this security context' and provide a user id and password of a account in server2.
can you...
March 8, 2010 at 12:07 am
Run your job with the same accounts which is being used to run sql server agent.
March 7, 2010 at 11:05 pm
YOu should post Sql server 2008 related question on sql server 2008 tabs.this is for sql server 2005 😛
March 5, 2010 at 7:50 am
Viewing 15 posts - 2,101 through 2,115 (of 2,463 total)