Viewing 15 posts - 11,116 through 11,130 (of 13,462 total)
yes you can.
Paul is right..if you take your backup .bak file, you can restore it on any SQL 2005 instance, but behind the scenes it will be upgraded to the...
May 11, 2009 at 7:53 am
enterprise? no, that would be illegal. standard and enterprise are all purchases, and often involve thousands of dollars in licensing.
developer edition costs 50 dollars on amazon.com, and allows you to...
May 11, 2009 at 7:42 am
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...
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?
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...
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...
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...
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,...
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...
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...
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.
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 =...
May 8, 2009 at 9:43 am
if the trigger does not exist, you can't ALTER it..change to CREATE TRIGGER.....
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
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...
May 8, 2009 at 8:06 am
Viewing 15 posts - 11,116 through 11,130 (of 13,462 total)