Viewing 15 posts - 211 through 225 (of 2,897 total)
Hi Scott,
like I mentioned earlier, the WHERE clause is added afterwards in my application (so the user can choose to see archived corporations only, active corporations only or both)....
September 27, 2021 at 6:13 pm
Edit...
September 22, 2021 at 7:28 pm
Is this some kind of guessing game contest ?
September 22, 2021 at 7:15 pm
I have never encountered that. Is it possible some step is running after the restore that changes the recovery model ?
September 22, 2021 at 7:11 pm
I don't think your group by should include
s.OH,
o.SOQ,
September 22, 2021 at 7:09 pm
" ...There's also nothing that will prevent the user from changing databases after they login and, they usually do have to. Most people end up being taken to the "Default Database"...
September 21, 2021 at 1:13 pm
How about
INSERT INTO DataMap.dbo.Audit_Logins
SELECT ORIGINAL_LOGIN(), GETDATE()
where db_name() = 'DataMap'
September 20, 2021 at 9:11 pm
--Create a symmetric key, to be used for column encryption
CREATE SYMMETRIC KEY BeersKey
WITH ALGORITHM = AES_256
ENCRYPTION BY CERTIFICATE Beers;
'qwerty123' is more complex. I never encrypt my beer,...
September 17, 2021 at 5:09 pm
Now that you're on paid SQL 2014, have you configured compression in your backups, since you mentioned storage is a consideration ?
Using a SQL Scheduled job to run backups has...
September 17, 2021 at 2:05 pm
SQL Trace, or newer tool, Extended Events.
September 17, 2021 at 1:31 pm
What happens when you try to attach the MDF ?
Could you create a new database with the original name, create a filetable for it, detach the new database, then attach...
September 16, 2021 at 12:58 pm
"...I eventually went to a paid version, and now am on 2014, ..."
You could take the opportunity to set up a simpler backup strategy using native SQL. Some people don't...
September 15, 2021 at 3:52 pm
Did you check the table exists ? Does the DROP have a WHERE EXISTS clause ?
Maybe there was an error at some point after the table got dropped, and never...
September 13, 2021 at 8:27 pm
So the solution with new changes working for some 2016/ 2019 servers and some servers throwing same error.
I did not get an error on a 2008 SQL Server, but...
September 13, 2021 at 7:30 pm
Viewing 15 posts - 211 through 225 (of 2,897 total)