Viewing 15 posts - 466 through 480 (of 7,466 total)
Why on earth would you use data type FLOAT ???? ( especially if smallint / tinyint ) would do !
November 7, 2022 at 1:46 pm
Does it hold blobs ? ( of tables that reside in other filegroups TEXTIMAGE_ON yourtroubledfilegroup)
or indexes of tables/views that reside in other filegroups ?
November 4, 2022 at 1:22 pm
Generate your test code:
Select 'DECLARE @test VARCHAR(5) = ''€'';
SELECT convert(char(100),'''+name+''' ) AS DBCollation, @test collate ' + name + ' AS VarcharText;
GO
' SelectQueries
from fn_helpcollations()
where name like '%latin%'
order...
November 4, 2022 at 12:00 pm
have a look at "SET options"
November 4, 2022 at 11:47 am
have a read at: "Encrypt a Column of Data"
November 4, 2022 at 10:43 am
Great example on how naming variables ( etc ) can be confusing and lead you totally out of focus
November 4, 2022 at 10:00 am
removed - you're talking SSIS ( I assumed SQL DB engine )
November 3, 2022 at 3:09 pm
indeed, Jeff
Sorry, Johan... I'm not sure how to take that. To be sure, it wasn't meant as an insult to anyone (especially you). You hit the nail on...
October 28, 2022 at 12:47 pm
what security context did you use when you created the linked server?
This is what my test uses. The account is dbo in my case.
btw I prefer...
October 27, 2022 at 5:27 pm
sys.dm_io_virtual_file_stats returns data since last startup of SQLServer.
To get what you aim for, you should persist its data yourself.
By itself that data means nothing at all.
It's only use is...
October 27, 2022 at 7:11 am
I suspect this may be an OP spam post ....
October 25, 2022 at 2:07 pm
What are you trying to accomplish?
Why should a UDF be able to handle that?
Check "Valid statements in a function"
October 24, 2022 at 7:02 am
Here is what I use:
-- Deadlock information analysis
Declare @Debug bit
Set @Debug = 1
Set @Debug = 0
Declare @waitresource varchar(128)
set @waitresource = 'KEY: 7:72057600361103360 (97e5c9409bc8)'
set @waitresource...
October 18, 2022 at 12:42 pm
your varchar(4000) consumes as much space as your varchar(19) !
That's the whole point of data type varchar !
Do NOT store date/time/datetime date in (var)char columns !
Always use the correct data...
October 12, 2022 at 7:23 am
Viewing 15 posts - 466 through 480 (of 7,466 total)