Viewing 15 posts - 7,981 through 7,995 (of 13,469 total)
i would simplify the issue a bit:
items that contain badwords get archived off to a separate audit table, then update the messages directly to remove the bad words; the overhead...
March 10, 2011 at 5:11 am
FYI HL7 is a messaging specification for healthcare information systems.
I goggled a bit after this, and it appears that the parsing is not a trivial thing; one of the...
March 9, 2011 at 7:32 am
the error 5.7.1 Unable to relay says the issue is with your mail server refusing anonymous mail;
usually a mail server requires mail to either come from 1)a trusted source/ip, or...
March 8, 2011 at 7:59 pm
I think this happened to me once when I had upgraded the server to a higher version of a service pack, but not my local client tools; the local client...
March 8, 2011 at 11:34 am
ypk1984 (3/8/2011)
So when we establish the linked servers, we can be able to see all the servers linked under the...
March 8, 2011 at 11:21 am
I'm guessing that the issue has to do with your SQL2008 being 64 bit, and thus requires 64 bit postgres drivers.
take a look at this article:
March 8, 2011 at 9:04 am
rgerald 53299 (3/8/2011)
XP needs to be the "Pro" version or higher to work as a client.
I'm not sure what you mean by that; as long as the driver, whether SQL...
March 8, 2011 at 8:03 am
backs are stored at a major version level: SQL200/2005/2008/R2;
service packs do not alter the format of the backup files, so you can restore to any installation of 2005; you can...
March 7, 2011 at 1:44 pm
but he mentioned he's pulling from oracle...so joining a linked server table to your local table will threaten performance, because the command will copy the entire oracle table to tempdb,...
March 7, 2011 at 1:27 pm
not like you are asking, no ...you cannot dynamically create a table by calling your procedure.... have to create a table with the appropriate columns and datatypes first.
a work around...
March 7, 2011 at 1:03 pm
the issue is to NOT use the INSERT...VALUES syntax, but INSERT...SELECTinstead:
insert into sbsincome (incomekey,flightkey)
select
MAX(incomekey)+ 1 AS incomekey,
116040 AS flightkey
from sbsincome
March 7, 2011 at 7:44 am
mick i'm afraid i'll end up sending you to do some reading; i don't have a handy SQL 2000 solution to paste here for you;
as i remember it, if your...
March 7, 2011 at 7:18 am
you posted in SQL2000; are you limited to using sql 2000 for this solution?
sql 2005 introduced the row_number() function, which makes it really easy to do; your page would just...
March 7, 2011 at 6:40 am
not with openquery, but the linked server has an EXECUTE AT command that allows you to do some things;
i've created real tables, bu tnot temp tables(except inside a full set...
March 6, 2011 at 7:58 pm
I believe that by default an installed instance does not listen to the default port of 1433.
take a look at your configuration and see which ports it is currently listening...
March 6, 2011 at 9:46 am
Viewing 15 posts - 7,981 through 7,995 (of 13,469 total)