Viewing 12 posts - 376 through 387 (of 387 total)
right click table in EM and paste into qa, then simply rename the table in the create statement
March 28, 2005 at 4:05 pm
Why not try and use filemon, free from sysinternals. Use the app to find out what has hold of these files, and if you find out you can eaither kill the...
March 28, 2005 at 3:50 pm
Look at dbcc showcontig, run it against the table and see if you have fragmentation. If so run a reindex.
March 28, 2005 at 3:45 pm
create a staging table that matches the table you ultimately whant to import to, truncate this table at the begining of the dts using the execute sql task.
After the truncate...
March 25, 2005 at 10:46 am
use dbcc shrinkdatabase('dbname') out of business hours
March 21, 2005 at 1:14 pm
Maybe the sql server service started before the disks were ready. Do you have any event log entries that show the disks were not ready after the sql service started
March 17, 2005 at 1:51 pm
open up dts in designer and right click in white space and choose package properties from the resulting menu. Then click on the logging tab and check the log package...
March 7, 2005 at 10:00 am
It sounds like a permissions issue, check the account that starts the sql agent, also see who owns the job.
February 25, 2005 at 9:20 am
--Script to script out object permissions
DECLARE @DatabaseUserName [sysname]
SET @DatabaseUserName = 'byford777'
SET NOCOUNT ON
DECLARE
@errStatement [varchar](8000),
@msgStatement [varchar](8000),
@DatabaseUserID [smallint],
@ServerUserName [sysname],
@RoleName [varchar](8000),
@ObjectID [int],
@ObjectName [varchar](261)
SELECT
@DatabaseUserID = [sysusers].[uid],
@ServerUserName = [master].[dbo].[syslogins].[loginname]
FROM [dbo].[sysusers]
INNER JOIN [master].[dbo].[syslogins]
ON [sysusers].[sid] = [master].[dbo].[syslogins].[sid]
WHERE...
September 27, 2004 at 6:52 am
use sql profiler. use this site for an indepth overview and scripts to do this:
http://vyaskn.tripod.com/analyzing_profiler_output.htm
andy
June 2, 2004 at 4:17 am
Hi stacenic,
Liked your post and would be grateful if you could post this script or email it to me on andrewkane17@hotmail.com.
Regards
Akane
March 31, 2004 at 8:31 am
Viewing 12 posts - 376 through 387 (of 387 total)