Viewing 15 posts - 151 through 165 (of 1,169 total)
coolchaitu (6/16/2016)
But, SQL Server can acquire more memory than what is specified in max server memory
No, the excess from the value set in the max memory setting is used by...
June 16, 2016 at 8:12 am
It is possible to restore the deleted data if you follow the steps from this article https://www.mssqltips.com/sqlservertip/3160/recover-deleted-sql-server-data-and-tables-with-the-help-of-transaction-log-and-lsns/
June 16, 2016 at 5:48 am
coolchaitu (6/16/2016)
Good morning Gail Shaw,When i install an application, set it to use 1GB RAM , will SQL Server grab this 1 GB RAM
No, but it's better you set the...
June 16, 2016 at 5:26 am
First, what is the recovery model of the database?
What backups are you performing on it, and how often?
June 16, 2016 at 5:19 am
Hi,
What about this
with cte(team,ord) as
(
select 'a',1 union
select 'b',2 union
select 'c',3 union
select 'd',4 union
select 'e',5
)
select t1.team,t2.team
from cte as t1
inner join cte as t2 on t1.team != t2.team and t2.ord > t1.ord
order...
June 15, 2016 at 6:47 am
Erland Sommarskog (10/29/2014)
russc-993845 (10/29/2014)
June 14, 2016 at 3:08 am
You should start with code like this
select SCHEMA_NAME(t.schema_id) [schema_name], t.name [table_name], c.name [column_name]
from sys.tables t
inner join sys.columns c on t.object_id = c.object_id
-- where t.is_ms_shipped = 0 -- user created tables
to...
June 8, 2016 at 5:42 am
Ed Wagner (6/7/2016)
June 7, 2016 at 10:51 am
TomThomson (6/7/2016)
sestell1 (6/6/2016)
Thanks Igor for the interesting question.This is definitely good to know, since it doesn't seem to be documented anywhere. :crazy:
In particular, it's not documented in the "good...
June 7, 2016 at 10:48 am
Terje Hermanseter (6/6/2016)
June 6, 2016 at 3:45 am
TimCarrett (6/6/2016)
Which implies that ISJSON is available in SQL Server 2016...
June 6, 2016 at 3:32 am
sjimmo (6/2/2016)
One note though, the expiration is ignored if the cert is used for encryption
No! It was exactly used for backup encryption. Backups are simply not done.
I think I...
June 3, 2016 at 1:05 am
jason-706424 (6/1/2016)
I wanted to select one year, but given that it wasn't an option I selected 'never' (because in computer-life...
June 2, 2016 at 12:32 am
Hi,
There are differences in the execution plans: Degree of parallelism, Memory Grant, Set options.
June 1, 2016 at 8:40 am
Yes, if you have to go with codes, then PowerShell is the way that offers you easily achieve what you can do with the UI in SSMS.
Scripting other objects like...
June 1, 2016 at 3:49 am
Viewing 15 posts - 151 through 165 (of 1,169 total)