Viewing 15 posts - 16 through 30 (of 65 total)
I have Setup Database Mail through gmail. It works absolutely fine with no issue.
Like Ajay Said, we have to use port 587. In many websites this port is given wrong.
I...
April 6, 2009 at 6:20 pm
If the XYZ/User1 user account is an Service Account, then SQL Server 2005 cannot detect and you cannot give access to SQL Server to this domain user Account.
In SQL Server...
April 6, 2009 at 6:11 pm
It is because Guest Account is not diabled in master and tempdb.
Sql Server performs many actions internally and needs access to masterDB and tempdb.
So when a new user logs into...
April 2, 2009 at 9:58 am
Mayank Khatri (3/31/2009)
March 31, 2009 at 5:28 pm
Dude,
Please clarify what is your concern.
Your First question: You said you cannot install Client tools on a machine.
Above Problem Solved ?
Observation : I remember i use to install...
March 28, 2009 at 1:18 am
For SQL Server 2005, You can try this. This will give you any select, inserts, updates done on tables with datetime.
select
t.name
,user_seeks
,user_scans
,user_lookups
,user_updates
,last_user_seek
,last_user_scan
,last_user_lookup
,last_user_update
from...
March 28, 2009 at 12:42 am
One way to implement this would be to build an INSTEAD OF INSERT Trigger or check constraint that will check for uniqueness. While you build check constraint, you might be...
March 11, 2009 at 8:36 pm
I Understand Partitioning Function is only available in Enterprise Edition, Then how come my application was able to use this feature when I had my database server on Work Group...
March 11, 2009 at 3:10 pm
Please look at this link : http://msdn.microsoft.com/en-us/library/ms143504.aspx
March 10, 2009 at 7:58 pm
For complete information about Database Mirroring, Check this link
http://www.sql-articles.com/index.php?page=articles/dbmrr.htm%5B/url%5D
Regards,
IM.
February 28, 2009 at 8:05 pm
Nikhil,
I will repeat MG's words, You please try it once, post your query here. Definitely you will see comments from experts.
If you don't know how to write select statement using...
February 10, 2009 at 9:47 pm
Another way to truncate logfile without taking backup is,
DBCC sqlperf ('logspace')
check for the %used column for your database
do the following,
Step1: Change your Recovery Model from Full to Simple
Step2...
February 4, 2009 at 2:57 pm
I got reply from Microsoft, I asked them some thing, they answered me something else.
I asked them if Security update KB954606 is applicable to SQL Server Sp2 Express edition....
December 24, 2008 at 8:06 am
Steve Jones - Editor (12/23/2008)
I have asked plenty of questions of people on subjects in SQL Server where I am ignorant. There's no shame in not knowing.
Thats what makes you...
December 23, 2008 at 1:49 pm
Paresh,
High availability is very important I agree, but High performance is more important.
To be honest, what are the chances that you will ever use your DR server. (...
December 22, 2008 at 11:03 pm
Viewing 15 posts - 16 through 30 (of 65 total)