Viewing 15 posts - 6,511 through 6,525 (of 7,429 total)
Maybe your privledges on the table when the Dynamic SQL is executed. Try this (No dynamic SQL), hope I followed you right.
CREATE PROCEDURE [sProfLogActiveSDGs]
(
@LogID_1 [int],
@Profile_3 [int],
@Note_10 [varchar](8000)
)
AS
SET NOCOUNT ON
SET @Note_10...
April 5, 2002 at 9:33 am
The major advantage of SP's is their ability to use stored execution plans to quickly make logic decisions when access the database and all you have to do is grants...
April 5, 2002 at 5:31 am
Ok first is the machine you manually excuting from the same as the location the DTS package is running as scheduled? If not then try running manually fom the server...
April 5, 2002 at 5:21 am
Sent in email:
quote:
There are many various factors that you must consider with a database to get an idea of what can help...
April 5, 2002 at 5:16 am
I have not come across any tool and never had an issue with our upgrades (we were not using FKs thou). Can you post an example trigger built like this...
April 5, 2002 at 5:08 am
Well, I guess we still learn something everyday. After what levi said about the registry entry I got to looking and the best match I found was MaxUserPort (sorry I...
April 5, 2002 at 5:05 am
Also can you post a snippet of the code to give us a better idea of what happens and we can try to duplicate and resolve on our test environments.
"Don't...
April 4, 2002 at 9:07 pm
Not sure there. Getting outside what I have done so I would have to find time to test and see if there is some way. Robert Marda wrote several articles...
April 4, 2002 at 9:05 pm
So let me ask this. Are you needing to do this per transaction or timed. If timed then you might want to look at DTS with a schedule anyway, but...
April 4, 2002 at 9:00 pm
No it is now permanently set to TRUE until you turn it off by doing
sp_dboption 'dbname', 'select into/bulkcopy', 'FALSE'
instead.
You can do
sp_dboption 'dbname', 'select into/bulkcopy'
which will return the current...
April 4, 2002 at 8:45 pm
Sorry, did not understand this and that answer is no.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 4, 2002 at 8:40 pm
Both have their bennifits and yes the coalesce method will allow a saved execution plan to be used but that execution plan may not cause it to outperform a dynamically...
April 4, 2002 at 8:38 pm
Basically this represents the rows returned thru that operator based on thru datatypes and I believe a header of some kind. Anyway these are the notes I have made in...
April 4, 2002 at 8:22 pm
Run
sp_dboption 'dbname', 'select into/bulkcopy', 'TRUE'
Or in EM right click the database and do properties. You will find it on the Options tab (? don't have an EM in front...
April 4, 2002 at 8:19 pm
1) You can use master..xp_cmdshell 'bcp strings here', but look at BULK INSERT instead as it does the same thing but lives in SQL, no shelling needed.
2) If you can...
April 4, 2002 at 8:16 pm
Viewing 15 posts - 6,511 through 6,525 (of 7,429 total)