Viewing 15 posts - 1,111 through 1,125 (of 2,636 total)
It sure sounds like the backup is from a later version. Are you sure that both instances are SQL 2005? Maybe you should run RESTORE HEADERONLY with the...
April 16, 2008 at 5:12 pm
The syntax is a little different from SQL Server, but it looks like it's creating a database named dblinks then creating tables called tbl_admin, tbl_catagories, and tbl_links.
The tbl_links table has...
April 16, 2008 at 11:57 am
Specifically, you'll need a server scoped DDL trigger for DROP_DATABASE. Btw, I think the reason you got an error while trying to create a DML trigger on sys.databases is...
April 15, 2008 at 3:46 pm
See this thread for links to decryption tools: http://www.sqlservercentral.com/Forums/Topic396563-119-1.aspx.
See "Create Procedure" in BooksOnLine for syntax to create an encrypted stored procedure.
April 15, 2008 at 11:40 am
Yes, that's the tool. Just use SQL Server as both the source and destination. BooksOnLine has more information and there are lots and articles on this site with...
April 14, 2008 at 5:25 pm
You can list jobs by joining msdb.dbo.sysjobs and msdb.dbo.sysjobschedules. Something like:
select name, next_run_date
from sysjobschedules s join sysjobs j on s.job_id = j.job_id
order by next_run_date
Since all your jobs run...
April 14, 2008 at 4:04 pm
Good advice from gyanendra.khadka & mahesh.vsp. The Migration Wizard works pretty well for simple packages. The advice to learn about SSIS before migrating from DTS is a good...
April 14, 2008 at 3:52 pm
I'd use DTS. The Import/Export Wizard would work fine for this.
April 14, 2008 at 3:41 pm
Is WEBM a SQL Server login? Did you re-sync the database users with logins on USSERVER2 after restoring the database? Try running sp_change_users_login 'report' in the database and...
April 9, 2008 at 4:57 pm
The important bit in the Microsoft's advice is this:
Note You can only use the DTS Designer to rename a step for a DTS package. You cannot use the DTS Designer...
April 9, 2008 at 10:13 am
I always use dtsrunui to generate the encrypted DTSRUN string. If you select just the package name rather than selecting a specific version, the package will always use the...
April 9, 2008 at 9:53 am
Apparently, wmError is owned by the schema WEBM in the USSERVER2 database. You say the owners are the same in both databases. Do you connect to BOTH servers...
April 9, 2008 at 9:17 am
And, while you'd like to think that you'll only need a log reader once, it's pretty cheap insurance. If you need it this time, you'll probably need it again.
April 9, 2008 at 8:52 am
If you haven't mapped a login to a user in a database and granted it access to the database, the login can't even open the database. Even when there...
April 8, 2008 at 5:28 pm
No. In fact, you may find that you can't truncate a table that's being referenced by foreign keys.
April 8, 2008 at 4:39 pm
Viewing 15 posts - 1,111 through 1,125 (of 2,636 total)