Viewing 15 posts - 3,466 through 3,480 (of 8,761 total)
torfi (7/13/2016)
Takk, takk Eirikur. This was a great relief. I've been struggling with this problem nearly a week :w00t:
Ekkert mal
๐
You are welcome
July 13, 2016 at 11:13 am
Phil Parkin (7/13/2016)
Eirikur, is your test database really called 'TEEST'? ๐
Yees
๐
July 13, 2016 at 8:37 am
Quick suggestion
๐
USE TEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.Test') IS NOT NULL DROP TABLE dbo.Test;
CREATE TABLE [dbo].[Test](
[PK] [int] IDENTITY(1,1) NOT NULL,
[COLUMN1] [nvarchar](50) NOT NULL,
[COLUMN2] [nchar](10) NULL,
[COLUMN3] [nchar](10) NULL,
[COLUMN4] [nchar](10) NULL,
CONSTRAINT [PK_Test] PRIMARY...
July 13, 2016 at 6:11 am
torfi (7/13/2016)
CREATE FULLTEXT INDEX ON MalBokunSkyrsla
( Skjalid TYPE COLUMN Filextension Language 1039) KEY...
July 13, 2016 at 4:56 am
Quick suggestion towards a SQL Server 2008 solution, which is fine on smaller sets but may need to be improved for large sets. If you are on SQL Server 2012...
July 13, 2016 at 12:26 am
GSquared (7/12/2016)
NVARCHAR won't hold RTF files, just the text. I would expect VARBINARY instead of IMAGE, for RTF files.
This is wrong, NVARCHAR and VARCHAR will hold RTF files just...
July 12, 2016 at 2:46 pm
SQL!$@w$0ME (7/12/2016)
I would like to recall this post. I was running under wrong database.
Don't worry about removing it;-)
๐
Suggest you look into colour coding the connections in SSMS and paying attention...
July 12, 2016 at 12:56 pm
peden (7/12/2016)
July 12, 2016 at 11:26 am
sqld-_-ba (7/12/2016)
July 12, 2016 at 11:20 am
Quick question, why are you using IMAGE data type and not NVARCHAR?
๐
July 12, 2016 at 10:49 am
torfi (7/12/2016)
July 12, 2016 at 10:47 am
joshdbguy (7/11/2016)
This is fantastic, thank you!
You are very welcome.
๐
July 11, 2016 at 10:40 pm
These changes have been slightly annoying but looks like they are slightly improving with each release, make certain you have the latest release of SSMS.
One particularly annoying thing was...
July 11, 2016 at 10:31 am
Quick though, NUMA node 2 only has 4 cores, possibly that should be your maxdop limit.
Depending on the type of workload I normally set the Cost Threshold for Parallelism...
July 11, 2016 at 8:49 am
If I understood correctly this could be a solution
๐
Foreign Sales X:=CALCULATE
( SUM(Sales[SalesAmount])
,ALL(Sales)
,FILTER(ALL('Market'),'Market'[Market]<>"Ireland")
)
Domestic Sales X:=CALCULATE
( SUM(Sales[SalesAmount])
,ALL(Sales)
,FILTER(ALL('Market'),'Market'[Market] = "Ireland")
)
July 11, 2016 at 7:58 am
Viewing 15 posts - 3,466 through 3,480 (of 8,761 total)