Viewing 15 posts - 8,656 through 8,670 (of 9,641 total)
Is Service Broker running in msdb? DBMail needs Service Broker running in msdb.
Select is_broker_enabled from sys.databases where name = 'msdb'
This should return 1.
May 7, 2008 at 1:58 pm
If you are always getting 0 it is because both fields are int and division between int's will always return and int. Convert one to decimal(3, 2) like this;
Select...
May 7, 2008 at 1:51 pm
The only reason this would take more than 1 pass is that there are more than 2 records for some of the UniqueName and ParentREF combinations.
You could reverse the logic...
May 7, 2008 at 10:14 am
Locking hints are typically not recommended unless you are a very advanced SQL guru. There are instances where they can help. I have tended to use nolock on...
May 7, 2008 at 10:12 am
Carolyn Richardson (5/7/2008)
May 7, 2008 at 10:09 am
Unfortunately I don't believe that there is a way to do this and still maintain good security. Your best bet may be trying to write a simple ASP.NET web...
May 7, 2008 at 10:08 am
I'll just add that moving to stored procedures and only allowing the web user to execute the stored procedures will also eliminate the possibility that your web user account has...
May 7, 2008 at 10:03 am
Using db_datareader is not a good practice. The user logging into the website should only have permissions on the objects it needs access to. By default any user...
May 7, 2008 at 9:55 am
I don't think this works in SQL Server 2000. In 2005 I believe it would be DENY CONNECT.
May 7, 2008 at 9:52 am
Have you checked to make sure the SQL Server is set to allow remote connections? SQL Server Surface Area Configuration -> Surface Area Configuration for Services and Connections under...
May 7, 2008 at 7:50 am
You need to go into SQL Server Surface Area Configuration and then into Surface Area Configuration for Features and check the enable Openrowset and Opendatasource support selection under Ad Hoc...
May 7, 2008 at 7:45 am
Well in your script being run in QA you are separating the procs with the GO batch separator so they are running in 2 batches. That is just one...
May 7, 2008 at 7:41 am
Don't see anything mentioned above. Please put your problem in the post so we can see it and so we can quote it if need be.
Thanks,
May 7, 2008 at 7:37 am
Okay, first you did not give complete information in your original post, so I could only offer a solution based on what you gave. Your original post mentions nothing...
May 7, 2008 at 7:34 am
Viewing 15 posts - 8,656 through 8,670 (of 9,641 total)