Viewing 15 posts - 316 through 330 (of 499 total)
What does this mean: "de-identification of specific fields"
perhaps if you post some sample data and required results, we can help.
March 12, 2015 at 11:05 am
The syntax is:
setup.exe ... /IAcceptSQLServerLicenseTerms
See here: https://msdn.microsoft.com/en-us/library/dd638066.aspx
March 12, 2015 at 11:03 am
Why don't you want to use a function? It's really the only way to do what you want.
March 12, 2015 at 11:02 am
Wrap the check in a user defined function and call the function in the CHECK constraint
March 12, 2015 at 11:00 am
like many things, it depends.
Are there other indexes on the table? (besides the PK and CI)
How is the data inserted (in CI order?)
How wide are the CI index columns?
How is...
March 12, 2015 at 9:39 am
try splitting the update/delete steps out of the MERGE and do them separately.
Note that MERGE has some problems (some of them severe). Also note that MERGE is not an...
March 12, 2015 at 8:36 am
Thought so. I did this and it worked:
using tempdb
create proc usp_test as
set nocount on
select 1
select count(*) from openquery(sqlserver, 'exec tempdb.dbo.usp_test')
March 12, 2015 at 8:29 am
patterson1911 (3/12/2015)
March 12, 2015 at 8:18 am
Are you using FileStream/FileTable? If not, why not? If so, SQL should be controlling the files.
March 12, 2015 at 8:13 am
This is a SQL Server forum. You might want to post your question on MySql forums
March 12, 2015 at 8:11 am
Reporting is included in the Enterprise license
March 12, 2015 at 8:10 am
Try to do the join after the union like this:
select ...
from (select ...
union all
select...
March 12, 2015 at 8:08 am
KenpoDBA (2/17/2015)
g.britton (2/17/2015)
February 17, 2015 at 2:02 pm
Just a thought since there's another article today talking about SQL Server Express. Could Minion be made to work with Express? There's no Agent but perhaps some simple...
February 17, 2015 at 7:32 am
I'm guessing no one else has seen this problem or found a solution/workaround.
February 12, 2015 at 1:26 pm
Viewing 15 posts - 316 through 330 (of 499 total)