Viewing 15 posts - 511 through 525 (of 582 total)
OK, a trusted connection is usually a domain account. In that case, you don't put the username and password in the connection string. So, do you have a DBA or...
October 11, 2004 at 11:53 am
Take a look at the indexes on the table. It is possible that SQL is scanning the entire table to find your small set of rows to delete and that is...
October 11, 2004 at 11:48 am
Frequently, web apps use a SQL account to connect. Are you sure that you are using a valid SQL account and passoword?
October 11, 2004 at 11:43 am
Instead of increasing the timeout value, maybe you should look at how the query is written or break it down into smaller pieces. Sometimes doing several smaller updates is much better...
October 9, 2004 at 10:44 am
If you are talking about sending the definitions of the table and stored procedure, there is an easy manual process. By expanding Enterprise Manager until you get to the table...
October 9, 2004 at 10:36 am
Basically, a hash index uses a computed value instead of the real value. There is a topic "CHECKSUM" in SQL Books Online that shows an example. In this case, the...
October 7, 2004 at 12:48 pm
Also, you said that you changed the account for the "services." Make sure that you did change the account for SQL Agent.
October 7, 2004 at 12:32 pm
In Enterprise Manager, expand "Managment". Right click on "SQL Server Agent." On the "General" tab, select the email profile from the drop down list. Then click "Test." Then click "OK." ...
October 7, 2004 at 12:09 pm
Occasionally, when setting up SQLMail for the first time, I just can't get it to work until the server is restarted. So, if you are still having problems after trying...
October 7, 2004 at 11:57 am
Another thing you can do in addition to the resources mentioned by Jonathan is play with a query builder and then look at the code produced. That is how I...
October 5, 2004 at 11:33 am
I'm not sure if your logic is correct, but I do see a couple of syntax errors, you are missing a ')' after the word 'INSERTED' in your first while...
October 5, 2004 at 11:24 am
You are correct that there are problems if you are using text columns, but you can pull some information from deleted. If you are willing to have partial information from...
October 5, 2004 at 9:25 am
Brian's advice is accurate, but I don't think he is answering the right question. You want to know if you need to specify the database name in the query.
You...
October 4, 2004 at 3:55 pm
You could use a group by clause to do this.
select a,b,c from tableABC group by a,b,c
If you have some sample data and the results that you are trying to...
October 4, 2004 at 3:50 pm
I thought I just replied to this, but now don't see the response. I apoligize if it shows up twice.
You should not use the "Instead of" trigger in this case. ...
October 4, 2004 at 3:41 pm
Viewing 15 posts - 511 through 525 (of 582 total)