Viewing 15 posts - 8,851 through 8,865 (of 13,469 total)
repeatedly as in within seconds of each other, or you mean you go away, come back after a bit, and get re-prompted for connection info?
if it is the second choice,...
August 30, 2010 at 6:40 am
agnesloyola (8/30/2010)
Thank you so much Lowell.Now its working fime after using OPENQUERY.Thanks a lot 🙂
glad i could help and thanks for the feedback!
that link server behavior's a good concept...
August 30, 2010 at 6:34 am
matthew.wilson (8/30/2010)
Sorry maybe I can be more specific
I can set the columns to datetime though I need the parameter stored in that field to be variable,...
August 30, 2010 at 6:26 am
i think because the express edition was installed, and not a default instance, no service is there to answer a connection to 127.0.0.1.
try building a connection string to [127.0.0.1\SQLEXPRESS] instead....
August 30, 2010 at 6:07 am
it sounds like you are trying to make one generic proc , instead of multiple procs for specific purposes.
in your table definition, your parameter column is a varchar field, but...
August 30, 2010 at 6:02 am
this is fairly simple; are you familiar with the IF EXISTS / IF NOT EXISTS syntax?
I was going to post the whole exmaple proc, but the question struck me as...
August 30, 2010 at 5:47 am
JblakTSql (8/30/2010)
August 30, 2010 at 5:29 am
agnesloyola (8/30/2010)
August 30, 2010 at 4:13 am
SQL ORACLE (8/28/2010)
When we would like to send an alert to more than one users, only the first one received the alert.
if only one of the emails got thru, it...
August 28, 2010 at 7:36 pm
the parameter @recipients for msdb.dbo.sp_send_dbmail expects a semicolon delimited list of recipients; there's no limit to the # of recipients, since it is a varchar(max) definition;
so something like...
August 28, 2010 at 3:30 pm
I think this is data input validation that needs to occur on the asp page, and not at the server or even SQL server; a simple javascript alert is all...
August 28, 2010 at 6:20 am
maybe there is a database trigger that is causuing the issue, and not one on the table itself?
--db level triggers
select * from sys.triggers where parent_class_desc = 'DATABASE'
August 27, 2010 at 10:41 am
if it's not in the default trace, which onyl keeps track of "whodunnit" information on DDL stuff for a limited time, and you do not have any other traces in...
August 27, 2010 at 10:13 am
I agree the issue is going to be the trigger....show us your audit trigger code; if both fields are money or decimal types, the error raised cannot be from the...
August 27, 2010 at 9:50 am
parameter sniffing.
an execution plan is created when the procedure is created, and the SQL engine makes an assumption that since the default values are NULL, the best execution plan should...
August 26, 2010 at 1:37 pm
Viewing 15 posts - 8,851 through 8,865 (of 13,469 total)