Viewing 15 posts - 31 through 45 (of 1,251 total)
If you have access to the log files taken using Commvault, why can't you use some homegrown method to restore those to your target database? We use the OH scripts...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 13, 2022 at 2:57 pm
There appears to be a typo in the question in that it asks for "what command" but there are apparently two correct answers. The answers have tick boxes which suggests...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
July 20, 2022 at 7:23 am
Guess how my f$%^ing Saturday has started too.
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
July 9, 2022 at 3:31 am
Michael L John wrote:Is it Friday? I feel like it should be Friday.
No... its Sunday... special extended weekend 🙂
Now it's Friday. Mine started especially early too with a callout 45 minutes...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
July 8, 2022 at 6:58 am
Cove
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
April 21, 2022 at 8:17 am
I can't speak about becoming full developers but we're currently in the process of migrating to AWS. As part of this, I've found myself building Windows Failover Clusters and working...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
April 21, 2022 at 8:05 am
One, please, always, despite this being a technical question, talk to someone in legal at your organization after you decide on a path forward.
Two, I've been studying this for...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
January 12, 2022 at 3:22 pm
.
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
January 12, 2022 at 8:47 am
Heh... mine has started off with a bit of a "well that sucks" factor. Whole new time-keeping system where they want me to categorize virtually every aspect of...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
December 21, 2021 at 2:58 pm
It's a big year for us next year because we're moving into AWS. The initial migration will be like-for-like to maintain consistency but there's going to be the opportunity to...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
December 21, 2021 at 10:23 am
One of my domain passwords expired yesterday so I asked the service desk to reset it for me. I then spent half an hour trying to create a password that...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
December 7, 2021 at 9:48 am
When you say the PDWEDT column is numeric, how exactly is it stored? Your code returns '2021-11-28 hh:mm:ss.nnn' as last Sunday with the precise time dependent on when the code was...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
November 30, 2021 at 8:18 am
If you're running the .bat file as a Operating system (CmdExec) step, have you tried running it as a SQL Server agent proxy using credentials for a user that has...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
November 29, 2021 at 11:56 am
You're welcome. You could also do:
Create TRIGGER [dbo].[tinsert]
ON [dbo].[TBL_LiveData]
AFTER UPDATE
As
DECLARE
@Prozessstart integer = 0 -- An alternative method of setting a variable.
,@liveDataValue integer ;
SELECT @liveDataValue = value...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 13, 2021 at 1:37 pm
The basic syntax to set a variable in T-SQL is
SET @Prozessstart = 0
Your example is missing the SET in the first two instances where you set your...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 13, 2021 at 1:17 pm
Viewing 15 posts - 31 through 45 (of 1,251 total)