Viewing 15 posts - 526 through 540 (of 1,219 total)
For licensing questions, you should always talk to your Microsoft representative. People in these forums are techies, not lawyers.
That said, as far as I know, yes, you need a license...
September 22, 2013 at 2:33 pm
Again:
1) CREATE TABLE statements for your table(s).
2) INSERT statements with sample data, enough to cover all relevant cases.
3) The desired result given the sample.
I will be travelling tomorrow, so if...
September 22, 2013 at 12:41 pm
I repeat what I said in my previous post:
Generally, when you ask this question like this, it helps if you post:
1) CREATE TABLE statements for your table(s).
2) INSERT statements with...
September 22, 2013 at 4:29 am
cs 29850 (9/21/2013)
1.where can create inline function? In view? or where?
Not sure why you would create an inline function at all. The reference I gave you is from a larger...
September 22, 2013 at 3:05 am
Before we start talking about sargable arguments, maybe we should see if there is anything to sarg for. From what Duncan says, there does not seem to be any.
We have...
September 21, 2013 at 4:20 pm
If you look at the promotion material from Microsoft, it seems that the really hot stuff - Availability Groups and Columnstore indexes - are only in Enterprise.
However, what really is...
September 21, 2013 at 4:10 pm
You need a table of numbers, I have an explanation of this concept on
http://www.sommarskog.se/arrays-in-sql-2005.html#tblnum (only read down to the header "An inline function".)
Once you have this table, you can...
September 21, 2013 at 4:07 pm
sf.onlineforums (9/21/2013)
September 21, 2013 at 4:42 am
The important thing is not whether you do DBCC or not, the important thing is that you understand the ramifications of what you are doing.
For instance, if you want to...
September 21, 2013 at 4:30 am
Could you post the exact error message?
How do deduce that the first LSNs are the same?
September 20, 2013 at 4:11 pm
Is the index stored on the partition scheme or not? It if its, the partitioning column is effectively the first column in the index.
If the index is stored elsewhere, the...
September 20, 2013 at 4:04 pm
You could write a server trigger for CREATE DATABASE that adds this user to the database. I like this better than adding a user to model, because a server trigger...
September 20, 2013 at 3:55 pm
The almost ANSI-compatible way of writing it is:
UPDATE ZZZDocContProfile
SET DC.[DocumentType] = (SELECT SUBSTRING(STG.[CurDocNum],1,1)
...
September 20, 2013 at 3:50 pm
If you look closer the in the after-trigger trace, you will find that it is only the first invocation that takes a longer time. Furthermore, if you look close at...
September 20, 2013 at 3:35 pm
If it is messed up on a nightly basis I would suggest having a trigger to fix the bad data directly. Unless, fixing the source is within your powers.
September 20, 2013 at 7:36 am
Viewing 15 posts - 526 through 540 (of 1,219 total)