Viewing 15 posts - 16 through 30 (of 35 total)
Its immediate.Log Reader will tranfer the commands to subscriber immediately.
November 23, 2009 at 10:18 am
First try to analyze the problem and then take the action accordingly. Try to run the profiler and check whats happenning. Check CPU and Memory utilizations. Try to provide more...
November 23, 2009 at 10:12 am
Looks like its login issue. Try this,http://support.microsoft.com/kb/918992/. This will help you to transfer logins and passwords between servers.
November 20, 2009 at 8:38 am
Try to create the objects using dbo i.e, dbo.objectname
Regards,
VRR
November 19, 2009 at 12:24 pm
Is the databse is set to Auto grow? Doe sthe drive has enough space to grow the datafile?
November 19, 2009 at 11:53 am
Where did you find this error. Try to paste SQL server error log error
November 19, 2009 at 11:51 am
Two shared folder are not required.
One shared folder preferably on Secondary server which stores the tlog backup files and another folder(Copyfolder) on secondary server to copy the backup files....
November 18, 2009 at 1:45 pm
Post the tables structures and relationships between the tables.
November 18, 2009 at 1:14 pm
You can write a script by getting the column names of the table using
select column_name from INFORMATION_SCHEMA.COLUMNS where table_name='table1'
Insert the column_name into temp table and write while to...
November 18, 2009 at 12:59 pm
Here is your modified code:
declare @strdatabase nvarchar(50)
declare @strfolder nvarchar(500)
set @strdatabase = N'labmanager'
set @strfolder = N'E:\'
declare @tToday datetime
set @tToday = getdate()
declare @strbackupname nvarchar (100)
SET @strbackupname = @strdatabase + N''
+ str(datepart(year,@tToday),4,0)
+ replace(str(datepart(month,@tToday),2,0),N'',N'0')
+...
November 17, 2009 at 9:16 am
Do you want to pass all 10 items as 10 parameters to SP? Are the number of items will be 10 every time you call an SP from your application?
November 17, 2009 at 9:01 am
Thanks all. Created required script.
October 30, 2009 at 12:10 pm
Thanks Greg. I thought scripting is possible. I will go ahead your suggestion
October 29, 2009 at 12:00 pm
Viewing 15 posts - 16 through 30 (of 35 total)