Viewing 15 posts - 8,296 through 8,310 (of 39,877 total)
Why? That's the architecture. No reason to do more than need to understand this. You can complain to MS, but I doubt they're changing this anytime soon, and certainly not...
April 22, 2016 at 8:56 am
Two ways:
1. Use a trace to capture when tables are queried. Takes time, and not necessarily correct.
2. Use a file search mechanism against all of your .RDL files in the...
April 22, 2016 at 8:52 am
MadAdmin (4/22/2016)
It would be horrible to rebuild 800GB...
April 22, 2016 at 8:50 am
Along with the requests for information, learn about indexes. We can't just say index col1 or col2. Indexing needs to be balanced across your workload. If there are thousands (lac)...
April 22, 2016 at 8:50 am
That's the wrong guy. He's dbpub.com. There's a db-pub.com (hypen) that shows up, but isn't loading now.
April 21, 2016 at 11:22 am
No. You can add a database on SQL 2014 in R2 compatability mode, but not a SQL 2008 R2 instance.
The format for databases and logs has changed.
April 21, 2016 at 11:16 am
Brandie Tarvin (4/21/2016)
April 21, 2016 at 10:57 am
Gary Varga (4/21/2016)
Iwas Bornready (4/21/2016)
Gary Varga (4/21/2016)
I am assuming that the rules include:
- One guess per person.
What? I can't make one guess per day. Do I get extra guesses if...
April 21, 2016 at 10:55 am
Pher (4/21/2016)
-- Msg 195, Level 15, State 10, Line 5
-- 'NVARCHAR' is not a recognized built-in function name.
-- The TRY_Convert function requires 3 argument(s).
SELECT TRY_CONVERT(NVARCHAR(1), 234523)
Did I miss...
April 21, 2016 at 10:51 am
Explanation was incorrect. I had char and varchar, instead of nchar and nvarchar as the datatypes where an error should be returned.
Apologies for that. It has been corrected. I have...
April 21, 2016 at 10:50 am
Alan.B (4/21/2016)
I said 2. What is wrong with me.
You read T-R-Y-_-C-O-N-V-E-R-T as S-U-B-S-T-R-I-N-G
April 21, 2016 at 10:45 am
Not sure what this means. I assume you mean collation, which probably maps to Charset somehow. This would be SERVERPROPERTY('Collation'), but this can be set at the database and table...
April 20, 2016 at 11:05 am
Use a trigger. Build it for alters, and when a column value changes, write to a new table, with the date/time.
Note that there's no order to the rows in a...
April 20, 2016 at 9:06 am
Connect usually comes with the login creation.
Password policy is under the login properties, or here:
select
select
LOGINPROPERTY(log.name, N'IsLocked') AS IsLocked
, LOGINPROPERTY(log.name, N'IsExpired') AS IsPasswordExpired
, LOGINPROPERTY(log.name, N'IsMustChange')
In terms of user...
April 20, 2016 at 8:41 am
The excel data doesn't allow anyone to set this up, nor does the Word document make it easy to understand what you did.
It's helpful to say, I run this:
select unitid
...
April 20, 2016 at 8:38 am
Viewing 15 posts - 8,296 through 8,310 (of 39,877 total)