Viewing 15 posts - 871 through 885 (of 1,065 total)
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
What are the suggetions for reducing the latency and bring both subscribers with in 1 or 2 hours latency
One of the suggestions is, defragment the indexes in publisher as well...
December 8, 2008 at 2:28 am
Is their any difference in access from Dot Net code in 2000 and 2005???
No. There is no differece in access from .NET code for 2000 and 2005.
However, there are...
December 8, 2008 at 2:14 am
im using an sql accoun "sa"quote]
1) Share the folder to which backups are copied.
2) SQL Server Agent service account should be a domain account, not local account.
3) Grant...
December 8, 2008 at 12:32 am
Viewing 15 posts - 871 through 885 (of 1,065 total)