Viewing 15 posts - 226 through 240 (of 1,170 total)
why you have
where Contains(Name, '"Jo*"')
shouldn't it be
where Contains(Name, 'Jo')
Igor Micev
February 9, 2016 at 9:01 am
peter 67432 (2/9/2016)
Igor Micev (2/9/2016)
2)
Run this...
Igor Micev
February 9, 2016 at 8:49 am
Indianrock (2/9/2016)
RedGate's smart rename function came up with this...
Igor Micev
February 9, 2016 at 8:42 am
1) Check that the service "SQL Full-text Filter Deamon Launcher (SQL20XX)" is running. If not it must be running in order to use catalogues.
2)
Run this to see if you...
Igor Micev
February 9, 2016 at 8:31 am
Did you get the following error message for the second query
Msg 7601, Level 16, State 2, Line 5
Cannot use a CONTAINS or FREETEXT predicate on table or indexed view 'schema.table'...
Igor Micev
February 9, 2016 at 8:20 am
gbritton1 (2/9/2016)
DECLARE @i VARBINARY = 0x0005432345544
select LEFT(@i, 3), LEFT(CONVERT(VARCHAR(64),@i),3), LEFT(CONVERT(VARCHAR(64),@i,1),3), LEFT(CONVERT(VARCHAR(64),@i,2),3)
produced:
(No column name) (No column name) (No column name) (No column name)
...
Igor Micev
February 9, 2016 at 8:13 am
Sergiy (2/8/2016)
Igor Micev (2/5/2016)
The advise from ScottPletcher is just fine. Changing from smallint to...
Igor Micev
February 9, 2016 at 3:36 am
Batch is old 4+ years. Nobody have responded. I came to the same problem, not enough clear to me.
Igor Micev
February 5, 2016 at 8:32 am
Sergiy (2/3/2016)
It may look like changing a data type from you visual tool (SSMS, I guess), but what is...
Igor Micev
February 5, 2016 at 6:52 am
It can be. You should investigate. This post of Paul will help you - http://www.sqlskills.com/blogs/paul/wait-statistics-or-please-tell-me-where-it-hurts/
Igor Micev
February 5, 2016 at 6:48 am
Tha CASE is actually IF structure. It's up to you what is more easy for you to use.
Igor Micev
February 2, 2016 at 7:28 am
It's by default set to OFF.
Must be ON when is usually used for assemblies in SQL Server (.dlls). Of course it's has other security aspects, but I suggest to check...
Igor Micev
February 2, 2016 at 7:25 am
Use the following query to get the information:
select db_name() [database_name],fg.name [FG_name], sf.name [logical_name],sf.[filename] [physical_name]
,convert(decimal(18,2),round(fileproperty(sf.name,'SpaceUsed')/128.000,2)) [space_used_MB]
,convert(decimal(18,2),round((sf.size-fileproperty(sf.name,'SpaceUsed'))/128.000,2)) [free_space_MB]
from sys.sysfiles sf
left join sys.filegroups fg on sf.groupid = fg.data_space_id
Yes, space releases.
Igor Micev
February 2, 2016 at 2:20 am
Hugo Kornelis (1/28/2016)
tonytohme (1/28/2016)
Hugo,Many thanks, that was the only query that worked for me 🙂 Awesome!!!
Thanks a lot
Good! Now test it with a much larger and more varied selection of...
Igor Micev
January 28, 2016 at 2:27 pm
http://db-engines.com/en/ranking
Igor Micev
January 28, 2016 at 7:36 am
Viewing 15 posts - 226 through 240 (of 1,170 total)