Viewing 15 posts - 1,156 through 1,170 (of 1,335 total)
create table #spacedetails (name varchar(100),totrows bigint,reserved varchar(30), data varchar(30),index_size varchar(30), unused varchar(30))
insert into #spacedetails
exec sp_MSForeachtable @command1 = "sp_spaceused '?'"
select name,totrows, replace(data,'KB','') as 'Data in KB',
replace(Index_Size,'KB','') as 'Index Size in KB' ...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 10:40 pm
Restore the full database backup that was taken before jun 10th. Then if you have any differentials backup restore the same. else restore the log back point in time to...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 8:54 am
Your i/o read will be faster moreover placing tables that are joined together in different filegroups will enhance performance of your query.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 8:20 am
You can use opedatasource to read from your excel sheet and insert into your sql server.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 8:00 am
Change the compatability level. But remember that some TSQL commands are not supported in level 90. check for this site to find the desupported. Then its better that you update...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 7:51 am
You can wait for few days. Might be to get updated stats and few more. But this should never be a problem with restoration. Did u change the compatability level.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 7:40 am
The maintenance plan would have created a job. Take the syntax of the job step and try running in the query analyzer and let us know if you still face...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 6:33 am
you have to give permission for the user account starting sql server services. have you did that?
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 6:30 am
no way unless you have auditing aenabled and use a profiler to find that data.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 6:28 am
Unfortunate you cant resotre a backup from sql 2005 to sql 2000. its not supported.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 6:24 am
select databasepropertyex(databasename,recovery)
should be ok for ur req.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 6:03 am
Please check this.
1. Type secpol.msc from run prompt
2. Navigate to user rights assignment
3. you will see a list of permissions in the right hand side
4. check for lock pages...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 3:06 am
Check if you have enabled remote connections. By the way are you trying to do an edition upgrade. Let me know the reason why u are using an upgrade advisor...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 2:47 am
I am not sure if any object already altered can be traced. You can trace current activity in the server using sysprocesses table and manipulating against it. but if someone...
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 13, 2007 at 2:46 am
Check if you can use the script in the given in the URL mentioned below.
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=486
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
June 12, 2007 at 7:34 am
Viewing 15 posts - 1,156 through 1,170 (of 1,335 total)