Viewing 15 posts - 106 through 120 (of 155 total)
I think it is possible as it is based on backup and restore. Instances involved in log shipping should have the same case sensitivity settings.
March 27, 2008 at 3:35 pm
Agree with RBarry. Adding datasource will resolve issue.
March 24, 2008 at 9:29 pm
How your page file setting is? Please refer http://support.microsoft.com/kb/889654 and see if you have set up correctly.
March 24, 2008 at 9:18 pm
You are doing in right way by executing Alter table command.
My recommendation would be to put your alter table command in SQL Server Agent T-SQL Task job. You should...
March 22, 2008 at 12:19 am
While explaining please make sure you mention sql server version too.
March 21, 2008 at 11:53 pm
Output of sp_configure indicates that you have not limited max memory setting for SQL Server.
max server memory (MB) 16 ...
March 21, 2008 at 5:58 pm
setting "Both failed and successful logins" thru Management Studio will do same as changing registry directly.
March 21, 2008 at 5:52 pm
Yes, restore is good if you can manage with one day older data or whatever gap you have between backup and restore. Secondly, if your database is not very large...
March 21, 2008 at 5:34 pm
you should ask your Windows Admin. they are supposed to provide you this.
March 21, 2008 at 2:12 pm
It is possible if you have "Both failed and successful logins" enabled.
March 21, 2008 at 2:00 pm
If you are using tmp9.tmp file anywhere in your DTS then refer http://support.microsoft.com/kb/912911
otherwise you may have to refer suggestion posted by Adam.
March 21, 2008 at 9:34 am
There is no list to say why server went down. Every time you may have different reason.
March 21, 2008 at 12:10 am
I am not sure what it would be in case of MYSQL. I thought you are asking in SQL Server.
March 20, 2008 at 10:42 pm
set identity on your primary key field. If you want number to start with 1 and increment by 1 at every insert then in your case it should be:
ProductNo decimal(50,0)...
March 20, 2008 at 5:37 pm
execute select * from sysindexes where name ='PKCURSOR' to see whether you have PKCURSOR already in your database or not. Please do this before you try to run script mentioned....
March 20, 2008 at 2:56 pm
Viewing 15 posts - 106 through 120 (of 155 total)