Viewing 15 posts - 586 through 600 (of 2,636 total)
Does the package return any messages? Do you have pacakge logging enabled? If so, what messages are in the log?
The problem could be permissions. Does the nonsysadmin...
January 7, 2009 at 11:39 am
This will get you started. The query works as-is in SQL 2000. In SQL 2005, sysprotects, sysobjects and sysusers are views in the sys schema rather than tables.
select...
January 7, 2009 at 9:12 am
This article http://www.dbazine.com/sql/sql-articles/cook10 tells how to script SQL 2000 maintenace plans by scripting the jobs that run them. I haven't tried it so I can't vouch for the method...
January 6, 2009 at 10:09 am
The rest of the space is probably being used by the database's transaction log.
Run DBCC SQLPERF (LOGSPACE) to see the space used by all the logs in the...
January 6, 2009 at 9:35 am
ibnzakariyyahh,
I think what respondents are telling you is that it's fairly easy to use SSIS to do what you want but it would be difficult to walk you through creating...
January 6, 2009 at 9:15 am
I've used two methods to move databases:
1. Detach the databases, move files, and attach the databases
2. Backup and restore the databases
With either of these methods you'll have to recreate...
January 5, 2009 at 3:23 pm
The runtime component and DTS Designer are used in SSMS, but if you have the option of keeping a SQL 2000 instance with Enterprise Manager, you may find it's easier...
January 5, 2009 at 10:59 am
Basically, an identity column is used when an automatically incremented value is required. If used in a table where rows are regularly deleted, gaps in the sequential numbers will...
December 30, 2008 at 1:06 pm
Please don't post the same question in multiple forums. You've gotten a reply in this forum: http://www.sqlservercentral.com/Forums/Topic626999-6-1.aspx
December 30, 2008 at 9:42 am
You probably should read about the privileges of the various fixed server roles and fixed database roles in BOL. You can't create custom server roles, but you can create...
December 30, 2008 at 9:27 am
You can run it using sp_cmdexec and dtexec or you can put it in an unscheduled job and just run the job when you want.
See this article from BOL: http://msdn.microsoft.com/en-us/library/ms141708(SQL.90).aspx...
December 30, 2008 at 9:23 am
It depends on your definition of "dba tasks". The DBAs in my organization are members of the sysadmin server role and we don't farm out administrative duties to non-DBAs.
If...
December 29, 2008 at 12:26 pm
In Management Studio, connect to Integration Services, expand stored packages, expand MSDB, right-click the package and select "Run Package". You can also create a SQL Agent job and run...
December 29, 2008 at 10:45 am
In SQL 2000, only dbo (not just member of db_owner) and members of sysadmin can execute sp_adduser. Try using sp_grantdbaccess instead.
December 24, 2008 at 10:58 am
Josep (11/17/2008)
In a active/passive clustered system, you pay only one licence. Is it happen the same in Data Mirroring and Log Shipping? I don't get the answer anywhere...
When using log...
December 17, 2008 at 9:47 am
Viewing 15 posts - 586 through 600 (of 2,636 total)