Viewing 15 posts - 1,066 through 1,080 (of 1,999 total)
are you using SP_OA calls?
please can you post the code that generates the error...
that error is typically a COM/REGISTRY issue for an sp_oa call to a DLL
June 1, 2012 at 9:25 am
im guessing that the OP wants
Apples
bannanas
Chocolate
Coffee
turning into
A
Apples
B
Bannanas
C
Chocolate
Coffee
June 1, 2012 at 9:21 am
something like this
with x (id,letter)
as
(
select 65 as id, CHAR(65) as letter
union all
select ID+1,CHAR(id+1) as letter from x
where ID<90
)
select letter as name from x
union all
select name from sysobjects
order...
June 1, 2012 at 9:16 am
are you doing full backups at any point in your maintenance plan - log shipping does not prevent you from running full (non-copy only) backups - it just re-starts your...
June 1, 2012 at 9:09 am
Jonathan AC Roberts (6/1/2012)
michael vessey (6/1/2012)
If you are supplying SQL Server have multiple vendors and using SPLA licenses the cost is not far off $1,000 per cpu per month for...
June 1, 2012 at 7:50 am
If you are supplying SQL Server have multiple vendors and using SPLA licenses the cost is not far off $1,000 per cpu per month for enterprise edition, possibly half that...
June 1, 2012 at 7:37 am
You could get a multiprocessor SQL Server machine with a $1000 a month per cpu license fee or you could find an open source database that would do the necessary...
June 1, 2012 at 6:51 am
Jonathan AC Roberts (6/1/2012)
Hugo Kornelis (6/1/2012)
Jonathan AC Roberts (6/1/2012)
IceDread (6/1/2012)
If you want to go from MS Sql server, you...
June 1, 2012 at 4:41 am
Jonathan AC Roberts (6/1/2012)
Hugo Kornelis (6/1/2012)
Jonathan AC Roberts (6/1/2012)
IceDread (6/1/2012)
If you want to go from MS Sql server, you...
June 1, 2012 at 4:38 am
+1 hugo
it's also a complete re-hash of an article posted 30 days ago
http://www.sqlservercentral.com/articles/MySQL/88971/
both referencing the website convert-in.com
perhaps they should pay for an advert rather than posting articles with inaccurate content...
June 1, 2012 at 4:16 am
sqlnaive (6/1/2012)
June 1, 2012 at 2:18 am
sqlnaive (5/30/2012)
I'll try if I can get the execution plan whenever we get this situation again. Meanwhile I am sure that there is no process blocking the stuck procedure instance.
i...
May 30, 2012 at 2:42 am
why don't you have a look at your wait stats? - flush them before you go home and then if there is an instance then you can maybe see if...
May 30, 2012 at 1:33 am
does that include the heartbeat IP addresses as well?
May 28, 2012 at 10:28 am
Viewing 15 posts - 1,066 through 1,080 (of 1,999 total)