Viewing 15 posts - 1 through 15 (of 28 total)
What are the data types of the columns being transferred? I'm wondering if an implicit conversion is happening when the data hits Oracle and throws that error. I've...
September 28, 2011 at 10:44 am
sp_denylogin did the trick. I've been trying revoke, but that just removes the account entirely from the server. Thanks!
December 17, 2008 at 8:59 am
Use xp_cmdshell
As an example:
EXEC xp_cmdshell 'del C:\test.jpg'
Check BOL for any restrictions on using this sp.
September 10, 2007 at 1:44 pm
I'm assuming your "system" is an application sitting on top of SQL. If this is correct, the quickest solution would be to parse the string within the app while...
September 6, 2007 at 8:27 am
Every job has an initial start off point, otherwise it wouldn't be a scheduled job, but an infinite loop of execution. The SSIS or DTS package would act as...
September 5, 2007 at 9:02 am
Effectively, there is a "job suite" as you put it, but not in the traditional sense. Because DTS and SSIS can call other DTS and SSIS packages and they...
September 5, 2007 at 8:38 am
They do, there just isn't something as simple as a disable checkbox on the step. To go about disabling job steps do the following:
September 4, 2007 at 11:27 am
No, it's not using any table variables. Complex joins, sub-queries, simple-parameters, yes, but no table variables or anything outside the normal bounds of a SP.
August 29, 2007 at 7:35 am
Well, I still don't know why the SQL 2005 upgrade caused such a drastic switch in execution plan generation, but to solve the problem (so we can again utilize automatic...
August 28, 2007 at 7:35 am
Roger, thanks for the reply, but in my situation I do not believe this is the case as my stored procedure isn't called a great deal. Your issue may...
August 27, 2007 at 2:12 pm
Append ORDER BY [COLUMN NAME 1] DESC, [COLUMN NAME2] DESC, etc.
August 27, 2007 at 7:08 am
Your code isn't best practice, but it won't execute because it's formatted wrong, not because of context.
Change SELECT @sql =...
August 27, 2007 at 7:06 am
I've ran the query through DTA and it gave me an estimated performance increase of 27% when my query was running around 1:18 (which puts the estimated time of completion...
August 27, 2007 at 6:57 am
You don't necessarily have to make a new field to make an index. Put the select statement into a .sql file then run it through Database Engine Tuning Advisor....
August 15, 2007 at 1:57 pm
What permissions does the account have on the machine that you're running the installer under? If it's a power user or something with more restrictive settings, you may not...
August 15, 2007 at 10:12 am
Viewing 15 posts - 1 through 15 (of 28 total)