Viewing 15 posts - 1,861 through 1,875 (of 2,636 total)
Are your server and workstations on the same Service Pack? It may be that the mmc components on your workstation need to be updated. I've found refrences in MS Knowledgebase...
October 3, 2006 at 10:09 am
Import both text files into staging tables then use an SQL query in the Transform Data task to join the two staging tables. The query would look like something like this:
select t1.col1,
...
October 3, 2006 at 9:49 am
Depending on your environment (amount of memory, size of data row), you may be overflowing the buffer by setting Fetch Buffer Size to 3000. I know that any setting greater...
October 3, 2006 at 9:41 am
You'll need a login that's a member of sysadmin or securityadmin whether it's a Windows or SQL Server login. Do you know the SA password? If Builtin\administrators hasn't been removed,...
October 2, 2006 at 10:32 am
I've had this happen when I've opened a package on my workstation without being logged on to the server. It works when I log on to the server either remotely...
October 2, 2006 at 10:22 am
You're right, Eddie. I should have advised him to us STOPAT to restore to a time before the delete. Thanks for catching that. Good thing I'm not the only one...
September 29, 2006 at 10:59 am
Only a member of sysadmin can add a member to sysadmin.
Greg
September 28, 2006 at 2:29 pm
See "Upgrading to SQL Server 2000" in BOL or this white paper: http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/sqlugrd.mspx
Both list the steps to take in going from SQL 7.0 to SQL 2000.
Greg
September 28, 2006 at 2:15 pm
You could try using the New SQL Server Registration wizard in Enterprise Manager. Start it and click on the elipse (...) next the the server name box. It will list...
September 28, 2006 at 9:27 am
Assuming the database is useing Full Recovery model, back up the t-log right now. Restore last night's full backup with a new database name, restore all log backups taken during...
September 28, 2006 at 8:46 am
Once you've created a login in SQL Server you need to create a user in each database that the login needs to access. You can do that in Enterprise Manager...
September 26, 2006 at 8:41 am
I suppose there's some value because the names of both the computer and the instance are required to connect.
Greg
September 25, 2006 at 5:26 pm
Sorry, I don't know any way to configure the log to give more information. I can usually figure out what's going on by looking at both the SQL Server log...
September 25, 2006 at 5:20 pm
Are you talking about database transaction log? If so, there isn't a good built-in way of reading and interpreting them. There are several 3rd party tools, such as Lumigent Log Explorer...
September 25, 2006 at 10:05 am
ALTER FUNCTION is not a transferrable permission. See the 'Permissions' section of ALTER FUNCTION in BOL.
Greg
September 21, 2006 at 9:47 am
Viewing 15 posts - 1,861 through 1,875 (of 2,636 total)