Viewing 15 posts - 241 through 255 (of 623 total)
That's the difficulty. I don't want to create a table first.
CREATE PROCEDURE MyProc
AS
SELECT 1 AS column1, 2 AS column2
--At this point my data-consumer could use code like this
CREATE TABLE #myDynamicTable...
January 29, 2013 at 1:55 pm
Can you you arrange to copy the file to a location the test server can access? You could add this to the backup job or use a separate process.
January 28, 2013 at 4:17 pm
You existing backup process should already be automated.
Assuming this is the case: determine where those backups are going; determine whether the test server has access to the backup files;...
January 28, 2013 at 12:09 pm
>>(substantial platform differences) = (substantial performance differences)
That was exactly it...and not in a linear fashion either.
Thanks to you folks for educating me about REBAR in the first place. It gives...
January 25, 2013 at 4:57 pm
I'll explore the test/prod server differences, the differences are substantial.
Duration is always 0 in profiler which may indicate SQL Server not being fed by the software at the normal production...
January 23, 2013 at 5:29 pm
Took a look at job history, we use dtexec a lot. I'll have to sleuth this out the old fashioned way....
January 17, 2013 at 12:15 pm
Perhaps you can give the users access to a table where they can set a flag to disable the job. Then add a step to the job that will check...
January 11, 2013 at 10:44 am
Consider making you packages dynamic using Package Configurations.
http://msdn.microsoft.com/en-us/library/cc895212.aspx
This could be important as far as disaster recovery where you server names, file locations and even database names may be...
January 7, 2013 at 12:53 pm
SSIS package does not run when called from a SQL Server Agent job stephttp://support.microsoft.com/kb/918760
Its a fairly common issue and there are tons of resources if you google 'package fails SQL...
January 4, 2013 at 11:04 am
Truncate requires elevated permissions beyond GRANT DELETE. I think you need to be db_owner.
If the table is small you can use a DELETE without a where clause.
Or explore ways...
January 4, 2013 at 9:33 am
Applying permissions up the folder path to Folder1 seems to have done the trick. \\server\Folder1\Folder2\Test.txt
Thanks!
January 2, 2013 at 3:32 pm
Adding the account to db_ssisoperator role seems to resolve the issue.
I am still troubleshooting some issues with overwriting an existing file..
Using dtexec will create the file but will fail if...
January 2, 2013 at 2:28 pm
I think the account needs to be added the db_ssisoperator role in the MSDB database.
I'll post back final testing results....
January 2, 2013 at 1:35 pm
Same result when I call the 32 or 64 bit executable.
I'll continue to research the error.....
Could not load package ".." because of error 0xC0014062.
Description: The LoadFromSQLServer method has encountered OLE...
January 2, 2013 at 1:04 pm
Could not load package ".." because of error 0xC0014062.
Description: The LoadFromSQLServer method has encountered OLE DB error code 0x80004005 (Login failed for user.....). The SQL statement that was issued...
January 2, 2013 at 12:53 pm
Viewing 15 posts - 241 through 255 (of 623 total)