Viewing 15 posts - 106 through 120 (of 1,068 total)
thunderousity (8/24/2012)
If I can create the local accounts, what are...
August 24, 2012 at 5:57 am
SQLSACT (8/24/2012)
Would my select statement still have an interaction with the base table even though the nonclustered index satisfies the query completely?
No. Such indexes are called Covering Indexes.
August 24, 2012 at 4:18 am
What you have written about NonClustered Index in confusing to me. So instead of commenting on that, I would ask you a question to encourage to do further research on...
August 24, 2012 at 3:38 am
Yes. It is still valid.
It's caled uniquifier.
August 20, 2012 at 3:38 am
Do you have enough free disk space?
Please run this script and post the output here:use <dbname>
go
select f.file_id, f.physical_name, g.name 'File Group', size/128 'Size(MB)', FILEPROPERTY(f.name , 'SpaceUsed')/ 128 'Space Used (MB)'
from...
August 20, 2012 at 3:35 am
I think SQL Server Browser service has stopped.
August 19, 2012 at 11:19 pm
No. Cast/convert will not help here. You need to remove SUM() around database_name.
Evenafter that the query fails.
What are you trying to achieve? Other may help you to rewrite the query.
August 17, 2012 at 6:07 am
Yes. Lower version SSMS can be used to connect to higher version instances and execute SQL statements including any new syntax/statement.
August 16, 2012 at 11:17 pm
I am not aware of any other method. Others might know.
Meanwhile you can ask the administrators to help in this matter.
August 16, 2012 at 3:25 am
Is the number of columns fixed/known like 3 as shown in the above example?
August 16, 2012 at 12:27 am
select j.name
from msdb.dbo.sysjobsteps s
inner join msdb.dbo.sysjobs j
on j.job_id = s.job_id
where s.command like '%SpTestProcedure%'
August 15, 2012 at 11:45 pm
Job does not run under owner's account.
1) If you run a job manually, it runs using your login.
2) If schedule it, job runs using SQL Server Agent service account.
August 15, 2012 at 11:27 pm
Are you taking backing to new file or adding to exisint backup file?
August 10, 2012 at 2:44 am
By default on the same machine Names Pipes protocol is used.
Disable Names Pipes or force TCP protocol.
August 9, 2012 at 11:56 pm
Ratheesh.K.Nair (8/9/2012)
1.What happenes if a rollback occurs just now?
Rollback happens in the memory and pages becomes dirty again.
Those in disk will be rollbacked to memory .Am i right?
Question of...
August 9, 2012 at 11:52 pm
Viewing 15 posts - 106 through 120 (of 1,068 total)