Viewing 15 posts - 4,306 through 4,320 (of 13,469 total)
ugg that is tough; you might even have columns that don't store the the number as a varchar without dashes 9and leave the presentation layer to dash-ify it, or even...
November 29, 2012 at 1:27 pm
you are correct;
there is no way to rename an instance; you have to install a new one with the new name, and drop the old when when you are ready.
November 29, 2012 at 12:10 pm
davas (11/29/2012)
Just wondered why the sp_spaceused...
November 29, 2012 at 9:48 am
A HEAP table (without a clustered index) has a table size which includes the space of all the deleted rows, that ever existed, EVER.
so if you insert and delete a...
November 29, 2012 at 9:33 am
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
Viewing 15 posts - 4,306 through 4,320 (of 13,469 total)