Viewing 15 posts - 7,396 through 7,410 (of 9,643 total)
As GSquared as said, you can specify the lock type with a locking hint in the select statement. Something like Select x from table with (updlock). This statement...
September 24, 2008 at 8:05 am
Have you tried sending the email as plain text instead of HTML to see if that works?
Like you said it sounds like an Outlook issue. Can you send the...
September 24, 2008 at 8:01 am
Is the job doing performing multiple actions in a single step? If so I'd break out each action in it's own job step and then SQL Server Agent will...
September 24, 2008 at 7:58 am
You should check out the Scripts section here at SSC and you may find something. Here is a link to a script I posted that gets Foreign Keys and...
September 24, 2008 at 7:55 am
I'm not sure what you are asking and I don't think any of the other viewers do either which why you have not gotten any responses. Take a look...
September 24, 2008 at 7:52 am
anjali.vishwakarma (9/24/2008)
September 24, 2008 at 7:48 am
There's a custom component out there called the Trash Destination that you can download and use. Available here.
September 24, 2008 at 7:41 am
I find this to be one of the failings of SQL Server encryption. My personal opinion is that you should handle encryption in the application, I know you don't...
September 24, 2008 at 7:38 am
The first place to look is in the SQL Server Configuration Manager to see if SQL Mail is enabled.
Second see if there is a MAPI client (Outlook) installed on the...
September 24, 2008 at 7:31 am
Glad some of the stuff I read about and give a whirl can be helpful. Every time I think I know what you need to know about SQL Server...
September 23, 2008 at 7:28 pm
You would need to pass parameters by name. Like this:
code]
Exec tableA_upd @id = 1, @col1 = 'Test'[/code]
Leaving any unchanged parameters out.
I also assume that you have the value(s) on...
September 23, 2008 at 10:41 am
About 6 months ago I posted a question asking about update procs and if I should require all the params or go the IsNull route and the consensus on that...
September 23, 2008 at 10:20 am
Adrian Nichols (9/23/2008)
Hi guys,If you wanted to keep this on the SQL Server side, you could use Full Text Search? :crazy:
I don't think Full Text search is useful in this...
September 23, 2008 at 10:04 am
I was wondering the same about the clustered index or the heap (some people still don't always have a clustered index). That's why I mentioned that it might be...
September 23, 2008 at 10:00 am
In the first code example you are required to pass all the parameters to the stored procedure so the web code would pass all the parameters and it updates all...
September 23, 2008 at 9:55 am
Viewing 15 posts - 7,396 through 7,410 (of 9,643 total)