Viewing 15 posts - 136 through 150 (of 546 total)
Is there a thread connected using DAC somehow.?
also is related to one Database or the SQL Server itself.
Also check to see the database is not set to SINGLE_USER or RESTRICTED_USER...
June 18, 2009 at 9:18 am
June 18, 2009 at 9:18 am
Just a hint:
Do you pass parameters using SQL Agent to a SSIS PAckage or SSRS.
June 18, 2009 at 8:53 am
Do you want to track the users or validate the service account for SQL?
if it is the user, use can use the Server Side Trace File if it is...
June 18, 2009 at 8:49 am
I have heard of using diff TCP Port for SQL server instances.. but not using diff IP's. Maybe i should learn more. Let us know what you find out for...
June 18, 2009 at 8:17 am
if you are using select then a T-sql will be sufficient.
select upper(column_name) from information_schema.columns
where table_name= "your tale name"
renaming the physical name with sp_rename check books online
EG:
sp_rename @objname='DBInfoMax_2.ServerName',@newname='SERVERNAME',@objType='COLUMN'
Where DBInfoMax_2 is...
June 18, 2009 at 7:51 am
You will have to re-design your packages in 2005 SSIS and that is the only way out.
We have been doing this dince past year and it is purely Re-WorK..
Again...
June 18, 2009 at 7:34 am
I think SQL agent is not inclued in Express Edition, so you cannot create maintenance plans and schedules.
you will have to use SQL Scripts to create backups and use windows...
June 18, 2009 at 7:16 am
I would recommend a Backup and Restore of the databases or Detach and Attach of the DB's.
And nothing much depriatiated from SQL 2005 so you should be good to go.
June 17, 2009 at 10:50 am
right click Database->tasks->shrink->files or
USE [WSS_Content]
GO
DBCC SHRINKFILE (N'WSS_Content_log' , 0, TRUNCATEONLY)
GO
DBCC SHRINKFILE (N'WSS_Content' , 0, TRUNCATEONLY)
GO
first try this and let us know if it works:(replace the files names with your...
June 17, 2009 at 10:47 am
your command should work but before starting the install:
some more info:
June 17, 2009 at 10:21 am
I personally think the answer is: controlling your transaction log files and in turn the trans backps..
June 17, 2009 at 9:44 am
What are the SQL Server Service accounts (local or domain accounts)
Are the DB compatibility modes same for both the databases.
What is the service pack levels and SQL server Editions:
What i...
June 17, 2009 at 9:43 am
you could have applied the trransaction log (with NORECOVERY) to the mirrored instance to catch up with the principal and it should have solved your issues.
June 17, 2009 at 9:17 am
Viewing 15 posts - 136 through 150 (of 546 total)