Viewing 15 posts - 5,311 through 5,325 (of 7,502 total)
- as with many of us, one of the problems is there is no application name '.Net SqlClient Data':crazy: provided by the connections.
- try to determine the host your suspect...
January 21, 2008 at 6:14 am
can you post the result of "sp_who2" (standard system sproc ) ?
January 21, 2008 at 5:14 am
If you have a remote desktop connection available, you can use EM, rightclick the servername and select properties;
In the security tab, you can see the account that is being used.
(on...
January 21, 2008 at 4:52 am
- can you double check the recipient's email address ? ( possible typo )
January 21, 2008 at 4:44 am
what service account are you using for :
- SQLServer
- SQLAgent
January 21, 2008 at 4:35 am
just grant de AD-group login rights to your sqlserver instance, then add the ad-group to the correct database role and grant the needed privileges to the AD-group.
use yourdb
GO...
January 21, 2008 at 4:24 am
a classic DML-trigger will provide auditing capacity;
Keep in mind to keep your trigger as short as possible, local, ...
because it is executed within transaction context. If your trigger fails, the...
January 21, 2008 at 4:16 am
- did you test the mail profile ?
- can you find any messages in the mail system's logging ?
- can you send "non-html" text messages ?
I've used this code to...
January 21, 2008 at 4:07 am
Matt Miller (1/18/2008)
January 18, 2008 at 8:22 am
Oh no, forget about the function. that won't work with temptb's
(as the error states)
In stead just add the create #mytmptb at the beginning of your master stored procedure.
and add...
January 18, 2008 at 8:15 am
indeed, you've mixed them up.
It's destiny for many of us dba's ...
Sometimes you have to proove you're human after all :w00t::D
January 18, 2008 at 8:07 am
I wonder how intelligent SQL2005 would handle a this
create view V_myLanguages
as
select 'English' as Language, Base, Text
from tbEnglish
select 'French' , Base, Text
from tbFrench
select 'Chinese' , Base, Text
from tbChinese
go
Select ...
from V_myLanguages
where...
January 18, 2008 at 7:29 am
Is there a problem when using a temp table to generate your number ?
e.g.
create table #mytmptb (myNumber int identity(1,1))
set nocount on
declare @MyNumber int
insert into #mytmptb
output inserted.myNumber
default values
set...
January 18, 2008 at 7:12 am
my first impression ?
- just call the sproc have it return a rowset to a .net-dataset and the write the .net dataset to an xml-file.
(I don't know the coffee language...
January 18, 2008 at 6:54 am
just my 2ct.
- avoid dynamic sql
- add a language code column an just use one table
- maybe even partition on the language code column
- if you still want tables to...
January 18, 2008 at 6:44 am
Viewing 15 posts - 5,311 through 5,325 (of 7,502 total)