Viewing 15 posts - 4,306 through 4,320 (of 13,464 total)
for the individual emails, do they all have the same error message?
maybe something changed outside of your control, like a firewall blocking port 25 traffic, a DNS error or something...
November 29, 2012 at 9:01 am
tantcu (11/28/2012)
Do you know how to do it with macro?
any macro is going to have too many specifics...you have to build the macro before you can use it, and that...
November 28, 2012 at 2:59 pm
have you looked into the built in Import Export Wizard, or SSIS or using a linked Server yet?
one of the many selections of the wizard is to chose an excel...
November 28, 2012 at 2:53 pm
why not the two values in the same query? just an oversight?
select * from openquery([linkedserver here],
'select
name,
@@version
from sys.servers
where server_id =0')
November 28, 2012 at 1:46 pm
what if your data is not in that exact format?
/*
--Results
First_Name Middle_Name Last_Name
Doe, John M.
*/
With [data$]...
November 28, 2012 at 1:25 pm
rebecca.moore.ctr (11/28/2012)
November 28, 2012 at 12:45 pm
i found a few articles, all with explanations:
http://www.nootz.net/index.php/service-broker-fire-and-forget-messages.html
November 28, 2012 at 9:50 am
just reading up and want you to check the basics.
search the code and see if there is a {MyConnection}.Close, where {MyConnection} is the variable name for your Connection...it might be...
November 28, 2012 at 8:24 am
ok, does select * from table have any text or varbinary columns that are huge in size?
can you get teh actual exection plan and post it?
when that query is running,...
November 28, 2012 at 6:03 am
also post the query; you might have an accidental cross join or something, so your 150 rows is actually billions of rows by mistake.
a little peek might explain it better.
November 28, 2012 at 5:46 am
Brandie Tarvin (11/28/2012)
November 28, 2012 at 5:37 am
SQL_ME_RICH (11/27/2012)
Or perhaps it's even worse, and returning NULL!!!😛
but null is neither results nor not results, so it must be ok!
November 27, 2012 at 2:39 pm
lynn.huff (11/27/2012)
Lowell, that link just points back to this forum post.
whoops! link fixed, i built the tag wrong, sorry.
November 27, 2012 at 12:53 pm
you could also set the database to autoclose, and then check the sql server log to see if it was ever opened after you change the flag.
you'd have to make...
November 27, 2012 at 12:25 pm
part two of the group of articles that cpn hector mentioned is doing it dynamically, when the # of values is unknown.
the link to part two is here:
November 27, 2012 at 12:22 pm
Viewing 15 posts - 4,306 through 4,320 (of 13,464 total)