Viewing 15 posts - 226 through 240 (of 1,169 total)
why you have
where Contains(Name, '"Jo*"')
shouldn't it be
where Contains(Name, 'Jo')
February 9, 2016 at 9:01 am
peter 67432 (2/9/2016)
Igor Micev (2/9/2016)
2)
Run this...
February 9, 2016 at 8:49 am
Indianrock (2/9/2016)
RedGate's smart rename function came up with this...
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...
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'...
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)
...
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...
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.
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...
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/
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.
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...
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.
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...
January 28, 2016 at 2:27 pm
January 28, 2016 at 7:36 am
Viewing 15 posts - 226 through 240 (of 1,169 total)