Viewing 15 posts - 11,116 through 11,130 (of 13,460 total)
ive always used the oracle driver from the client install, but the previous poster is right...you might need to install the driver first:
SET @provider = N'ORAOLEDB.Oracle' --optionally 'MSDAORA' to use...
Lowell
May 11, 2009 at 7:01 am
behind the scenes, the length is set to -1 for the column in syscolumns. can you set the width to -1 instead of 8000?
Lowell
May 11, 2009 at 6:58 am
raw text or RTF? editplus can do that easily to raw text,you just set a macro to search for a term to find the start, then make it select while...
Lowell
May 10, 2009 at 3:20 pm
within a trigger, there is a couple of functions you can use you can use to determine if a column has changed:
IF (UPDATE(columnname) ) returns true or false, if you...
Lowell
May 10, 2009 at 6:01 am
are the columns in the spreadsheet in the same order as the columns in the dataset?
what i mean is, if the spreadsheet has 10 columns today, and 14 columns tomorrow,
do...
Lowell
May 10, 2009 at 5:31 am
not on the screens you were setting up; that set up the profile, where it is only one account.
if you want replys to any email to go to multiple persons,...
Lowell
May 10, 2009 at 5:15 am
just checking the basics...the connection string your program is using is connecting to master database and not the database you are trying to restore right? if it connects to teh...
Lowell
May 9, 2009 at 4:38 pm
just checking the basics...the connection string your program is using is connecting to master database and not the database you are trying to restore right? if it connects to teh...
Lowell
May 9, 2009 at 4:30 pm
doh! that was it! thank you Gail, and thank you Barry for a handy snippet to add to my collection.
Lowell
May 8, 2009 at 9:56 am
RBarryYoung (5/8/2009)
Declare @qp as XML
SELECT @qp = query_plan
From sys.dm_exec_requests
Cross Apply sys.dm_exec_query_plan(plan_handle)
Where session_id =...
Lowell
May 8, 2009 at 9:43 am
if the trigger does not exist, you can't ALTER it..change to CREATE TRIGGER.....
Lowell
May 8, 2009 at 8:47 am
my WAG on the column name was perfect!
change that last line to this:
WHERE tblPerson.PersonID = INSERTED.PersonID
Lowell
May 8, 2009 at 8:31 am
you pasted your current trigger...i modified it.
however, i made a WAG(Wild *** Guess) as to whether your table tblPerson had a PersonId in it.
you'd have to modify it to be...
Lowell
May 8, 2009 at 8:06 am
you probably want to change it to test for OR instead of AND...so it builds like this
SELECT * from MyTable WHERE 1 = 2 --never happens
OR ServiceNumber001Volume...
Lowell
May 8, 2009 at 7:50 am
your current trigger would update everything, where you really want to restrict it to the rows that were updated.
inside a trigger, there are two virtual tables called INSERTED and DELETLED,...
Lowell
May 8, 2009 at 7:39 am
Viewing 15 posts - 11,116 through 11,130 (of 13,460 total)