Viewing 15 posts - 16 through 30 (of 152 total)
mister.magoo (2/12/2013)
SELECT *
FROM (
SELECT*,row_number() OVER(PARTITION by TType ORDER BY TTime,TFunction,TStatus) AS rn
FROMMyTransactions
) a
ORDER BY rn,TTime,...
February 13, 2013 at 7:35 am
Attached are the current and required output screen shots. Note that i have created the required output in excel 🙂
February 12, 2013 at 2:47 pm
Thanks Lowell. Unfortunately not, it still does not group them together.
There should always be an outgoing after an incoming, and we need to make sure both are of same function...
February 12, 2013 at 2:26 pm
Kl25, thanks a lot for the idea. Your query gave a slightly different result but i used your idea to generate the required result.
Basically first find the minimum group id...
December 26, 2012 at 9:29 am
you are right, but we do full backups daily so re-initializing log shipping using diff was not possible because it was broken for over a day and we already had...
October 11, 2012 at 3:24 pm
We stopped the SQL Writer service, stopped the log shipping backup jobs and then re-initialized the log shipping by restoring a full backup.
Other option was to find the tlog backups...
October 11, 2012 at 2:37 pm
Thanks for your responses.
We figured out the issue, it was because of the NTBackup that we setup for our VMs.
Here are more details about the issue and resolution.
More details about...
October 11, 2012 at 10:24 am
i think SQL Server uses SYSDATETIME () in background when the backup file name is chosen.
i ran select GETDATE(), SYSDATETIME() on the server and it gave me same values...
February 15, 2011 at 11:10 am
I am using SQL Server 2008 R2 on Windows Server 2003 R2 machine.
I figured out an alternate which is giving me the actual file name. Instead of using Backupset table...
February 15, 2011 at 11:06 am
Thanks for the response Paul.
That's exactly what i checked and it was right, defualt schema is Forum with db owner permissions.
I wonder some how during the upgrade process it has...
December 10, 2010 at 8:26 am
Thanks Steve, no i am not auditing the connections.
December 9, 2010 at 11:02 am
Thanks Steve, but will this service upgrage cause any issue?
July 20, 2010 at 12:05 pm
Thanks Tara, i will try this strategy.
July 19, 2010 at 10:51 am
Thanks Roy, appreciate your response. That's the strategy we have planned and tested so i am glad that you have verified it.
July 19, 2010 at 10:45 am
Viewing 15 posts - 16 through 30 (of 152 total)