Viewing 15 posts - 706 through 720 (of 1,539 total)
Rajesh kasturi (7/14/2009)
What is the use of the second option i.e"If the backup folder is located on the primary server, type the local path to the folder"
if you backup...
July 14, 2009 at 9:30 am
Jagger (7/14/2009)
I'd like to create new table with customer data where this column should be in...
July 14, 2009 at 9:22 am
Yes this could be a possible reason. Since transactions are not read by the logread.exe, logs on publisher wont be truncated and will continue to grow.
July 14, 2009 at 9:17 am
There is a seperate thread running for status of dbs. Please post your replies Here
July 14, 2009 at 9:06 am
Well, Not much idea of how u implement it in integration services.
Someone with better knowledge should help you out 🙂
July 14, 2009 at 9:04 am
declare @str1 varchar(100)
set @str1='60601 Chicago'
select left(@str1,charindex(' ',@str1)-1) as ZIP, right(@str1,len(@str1)-charindex(' ',@str1))as City
OUTPUT:-
----------
ZIP City
--------- ---------
60601 Chicago
(1 row(s) affected)
Assumption: ZIP and...
July 14, 2009 at 8:58 am
Edwin (7/14/2009)
Questions: Can transaction replication cause/effect MS SQL Server 2000’s logs to grow (tremendous)?
This can happen if your log reader agent is not running OR coz of any issue...
July 14, 2009 at 8:54 am
I suppose by mistake you added a Poll instead of Topic.
Anyways, can you copy the backup file to a different location and then try to restore the database?
July 14, 2009 at 5:46 am
declare @str1 varchar(100)
set @str1='ServerName1\Dev'
select left(@str1,charindex('\',@str1)-1)
I've assumed there is only one backslash in the string!!
July 13, 2009 at 9:31 am
It'd be great for everyone if you share the solution here 🙂
July 13, 2009 at 9:02 am
There are many tools available like SQL Compare, if you dont have one, you can use Microsoft's TableDiff utility.
see Here
July 13, 2009 at 7:54 am
This may happen as the full backup consists of transactions from the log which are not written to datafile at the time of backup completion.
July 13, 2009 at 6:50 am
SAT_SQL (7/13/2009)
HiPLease check weather this will help u
Thanks but i dont require the patch.
I need some docs/links on best practices on patch upgradation.
July 13, 2009 at 4:54 am
GilaMonster (7/13/2009)
mysticslayer (7/12/2009)
The issue here is that I get an parameter filled with quotes.Not quite sure what you mean here. Could you give more detail?
Perhaps he's getting data as...
July 13, 2009 at 4:08 am
select id, left(ivalue,charindex(';',ivalue)-1) as ivalue1, right(ivalue,len(ivalue)-charindex(';',ivalue)) as ivalue2 from Results
OUTPUT
-------
id ivalue1 ivalue2
----------- --------- ---------
1 ...
July 13, 2009 at 4:00 am
Viewing 15 posts - 706 through 720 (of 1,539 total)