Viewing 15 posts - 871 through 885 (of 1,069 total)
Is it nonclustered index on a heap (= table without a clustered index)?
Is it a very small table, with only few pages?
What is the fillfactor?
December 19, 2008 at 4:49 am
shailesh (12/19/2008)
when I am trying to connect locally it is connecting to SQL server 2000.So i can't enjoy sql 2005 features.
Shailesh,
You don't have to uninstall or install anything....
December 19, 2008 at 4:43 am
Set the database owner using sp_changedbowner
For example:
use DatabaseName
go
sp_changedbowner 'sa'
go
After that you will be able to access the database properties.
December 18, 2008 at 12:30 am
i get the following error : "The following unexpected error occurred: "
Could you post the complete message?
Also check ...\Setup bootstrap\LOG\Summary.txt
December 11, 2008 at 5:16 am
It is recommended NOT to install SQL Server on a Domain Controller for security and performance reasons.
December 11, 2008 at 4:34 am
DELETE FROM Country
WHERE Id NOT IN (SELECT ID FROM Table1)
AND CountryName NOT IN (SELECT CountyName FROM Table2)
AND ....Table5)
December 11, 2008 at 2:16 am
Require a sql query that will retrieve duplicate values that are present in database columns
Try somethinig like this:
SELECT EmpName, count(EmpName)
FROM tblEmp
GROUP BY EmpName
HAVING count(EmpName) >= 2
December 11, 2008 at 2:02 am
i want to assign that string variable with the Current date in the formate "yyyy-MM-dd" within Execute Sql Task by using Sql statement..
Try something like this:
declare @vstrDate as char(10)
select @vstrDate...
December 11, 2008 at 12:23 am
select * from sys.objects
where type = 'U' or type = 'P'
and modify_date between '2008-12-01' and '2008-12-11'
December 10, 2008 at 10:35 pm
I have an error in the log file saying starting up database which is occuring every 1 minute.
Set the AutoClose property to False.
December 10, 2008 at 6:43 am
We'll be downloading and testing SP2 on test machine before trying it on PROD server.
I am not a DBA and dont know much about what issues we could face...
December 10, 2008 at 6:39 am
How can format the email to be more appealing? currently it is just standard text.
i.e. How could I add:
- font to selected sections?
- Maybe images (A banner at the...
December 10, 2008 at 2:56 am
who increased the size of the file and how much he increase and when it happened. ... I suspect that some one has increase 1024BM on one of the database
It...
December 10, 2008 at 2:42 am
This cause a major problem since the rights assigned to the user are lost. How I can find how & where the user are re-created?
select * from master..syslogins
Run the...
December 8, 2008 at 10:06 pm
Viewing 15 posts - 871 through 885 (of 1,069 total)