Viewing 15 posts - 1,606 through 1,620 (of 2,636 total)
Sorry, I don't have any Oracle databases. Hopefully, someone who does will see this thread.
Greg
April 18, 2007 at 5:29 pm
I think the original poster is thinking of scripting as a way to backup his database. Hopefully, the responses in this thread have dissuaded him of that notion.
Greg
April 18, 2007 at 3:22 pm
It worked for me when I scripted linked servers on a SQL 2000 instance and created them on a SQL 2005 instance. Keep in mind that you can't find a...
April 18, 2007 at 3:18 pm
I'm glad you found a workaround. It's curious that the article says the problems was corrected in SP1, yet you still have it with SP3 applied.
Greg
April 18, 2007 at 10:08 am
Yeah, if you want the user to be able to read all the user tables in the database.
Greg
April 18, 2007 at 10:03 am
I think you can query sysprocesses to see which database is being backed up.
select dbid, cmd
from master.dbo.sysprocesses
where cmd like '%backup%'
Greg
April 17, 2007 at 9:46 am
Additionally, a backup save everything in the database: tables, views, stored procedures, functions, users, etc. Scripting tables only allows you to recreate the table schema.
To get started with backups, maybe you...
April 17, 2007 at 9:09 am
1. create a login, preferably one that uses Windows authentication
2. create a database user by granting database access to the login
3. give the user SELECT permission to the objects you...
April 17, 2007 at 8:56 am
You can't control the permissions for the role. As the name suggests, permissions are "fixed" and can't be changed.
If both logins are members of the sysadmin role, they should...
April 16, 2007 at 10:20 am
Was this database attached or restored from another instance? Users go with a database when it's moved, but logins don't.
Greg
April 16, 2007 at 10:16 am
What kind of workflow leads into the task that doesn't run? Try setting it to "on completion" and see if the task executes every time.
Greg
April 16, 2007 at 9:02 am
Maybe I misunderstood your original question. Do you want the job to succeed even if the step that executes the DTS package fails or do you want to figure out...
April 16, 2007 at 8:49 am
If you open an error log in Enterprise Manager, you'll see a message at startup that says, 'Logging SQL Server messages in file filepath'.
Greg
April 13, 2007 at 10:20 am
Script jobs in Enterprise Manager and run the script in SQL 2005.
Save DTS packages as files and open them in SQL 2005 Management Studio - Management - Legacy - Data...
April 13, 2007 at 10:14 am
Have you enabled package logging in the DTS package? That should tell you what error, if any, is generated when the package executes.
Greg
April 13, 2007 at 10:06 am
Viewing 15 posts - 1,606 through 1,620 (of 2,636 total)