Viewing 15 posts - 1,066 through 1,080 (of 2,008 total)
mic.con87 (12/6/2011)
Quick question: Can I mark this question as answered and add to the reputation of those that helped?
Nice Thought! But it's not required... Chris is well reputed here... To...
December 6, 2011 at 7:21 am
ChrisM@Work (12/6/2011)
Cool, thanks for the feedback. I learned the trick from an article Lowell did years ago 😀 Thanks, Lowell.
Cool trick with 5 nested function call... :unsure:
SELECT CAST(DATEADD(hour,DATEDIFF(hour,0,DATEADD(minute,30,GETDATE())),0) AS TIME(0))
December 6, 2011 at 7:16 am
george sibbald (12/6/2011)
Dev (12/6/2011)
Perry Whittle (12/6/2011)
Dev (12/5/2011)
December 6, 2011 at 7:08 am
Perry Whittle (12/6/2011)
Dev (12/5/2011)
It sounds OK. Just make sure once you enable jobs they restore the backups in proper sequence (without breaking the chain).
Log shipping will automatically restore...
December 6, 2011 at 6:51 am
Find 'hh:mi:ss' in following article. 😉
CAST and CONVERT (Transact-SQL)
December 6, 2011 at 6:20 am
MSBI Learner (12/6/2011)
Thank you Dev, could you please help me on how do I implement the same?
If help means giving you a running piece of code then I can't help...
December 6, 2011 at 6:08 am
There could be many reasons for it.
Factors That Can Delay Log Truncation
December 6, 2011 at 5:59 am
DECLARE RM_CURSOR CURSOR FOR
SELECT D.id,D.PeriodDesc,D.StartDate,D.EndDate
FROM #DateRanges D
ORDER BY D.id
OPEN RM_CURSOR
FETCH NEXT FROM RM_CURSOR INTO @id,@PeriodDesc,@StartDate,@EndDate
WHILE @@FETCH_STATUS = 0
BEGIN
Your looping logic is based...
December 6, 2011 at 5:57 am
Please contact your DBA immediately.
Determining the Next Step for Recovery of a File or Filegroup
http://msdn.microsoft.com/en-us/library/ms175561.aspx
Planning a Piecemeal Restore Sequence for a File in the Restoring, Recovery-Pending, or Offline State
December 6, 2011 at 5:52 am
salum (12/6/2011)
and if you using sqlserver 2008 you can...
December 6, 2011 at 5:32 am
Is it related to performance Tuning and Data overloaded error ???
It comes at last, when you are certain that you are pointing to right database & server.
One thing for...
December 6, 2011 at 5:16 am
Also i know that in ORACLE it is possible to observe such activity, using Toad tool for example, you can see the index scan or index seek or sort operation...
December 6, 2011 at 5:14 am
ns22boss (12/6/2011)
Here is the connection detailsConnection con = new Connection();
con.setDbHost("10.60.1.50");
con.setDriverName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
con.setDbName("QATESTDB");
con.setDbUser("sa");
con.setDbPassword("pa$$word");
con.setDbPort(1433);
con.setConnString(ConnectionAction.formConnectionString(con
.getDriverName(), con.getDbHost() + ":" + con.getDbPort(),
con.getDbName()));
ConnectionDetails conAlias = new ConnectionDetails(con
.getDriverName(), con.getConnString(), con.getDbUser(), con
.getDbPassword());
return conAlias;
Please verify the bold items.
December 6, 2011 at 5:03 am
Viewing 15 posts - 1,066 through 1,080 (of 2,008 total)