Viewing 15 posts - 91 through 105 (of 233 total)
* How easy the migration is from SQL 2005?
The migration is not very complex. But it depends on your code and your packages and dependencies. Like the TRUNCATE_ONLY option of...
November 6, 2009 at 3:07 am
USE [master]
GO
ALTER DATABASE [DB_NAME] SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
ALTER DATABASE [DB_NAME] SET SINGLE_USER
GO
ALTER DATABASE [DB_NAME] SET MULTI_USER
October 30, 2009 at 9:11 am
I am not sure about why the instance is not coming up in the network configuration option
But, have you enabled both TCP/IP and named pipes for the named instance?
July 29, 2009 at 5:03 am
The user under which your SQL server Agent is running might not have permissions on the shared folder. Just check the service credentials
July 29, 2009 at 4:43 am
Can you try following.
SQL server 2005 Surface Area Configuration -> change the instance name by using the "change computer" link -> Surface Area Configuration for Services and Connections - >...
July 29, 2009 at 4:38 am
Thanks Steve!
No, this is a dev box.
As we are short of hardware, we just wanted to run some test on same server [:)].
July 23, 2009 at 9:53 am
That is strange:ermm:
You can try keeping the script in a stored procedure and call the procedure from the job.
June 30, 2009 at 4:41 am
I don't think that version will have an impact...
The query seems fine to me. Can you try parsing the script by copy pasting it in SSMS? and see if there...
June 29, 2009 at 6:54 am
I don't see any syntactical problem with the script.
Can you script out the job by right click on the job and selecting "Script job as" and post the script?
June 29, 2009 at 4:24 am
Thanks Adi!
Time is the problem...its always is:-)
June 2, 2009 at 7:47 am
Thanks Gail for the feedback!
The current system is really messed up; apart from the above example there are lot many others.
They also have loops and cursors all over the...
June 2, 2009 at 6:57 am
Viewing 15 posts - 91 through 105 (of 233 total)