Viewing 15 posts - 46 through 60 (of 1,489 total)
Strong suggestion, don't store the images in the database. Can you? Yes. VARBINARY(MAX) would be the way to go. However, it really negatively impacts a whole slew of things...
February 20, 2025 at 7:51 pm
Thing is it will be in file format. I mean converted table data in to file and then moved data...but i f there is need to see the data...
February 18, 2025 at 10:49 am
dbo.clan.spouses is a 3 part name where dbo is the database, clan is the schema and spouses is the table.
Looking at your screen shot you probably want dbo.[clan.spouses], where dbo...
February 18, 2025 at 8:27 am
The error message would help but I strongly suspect it is objecting to converting 'this is a string' to numeric. Search for TRY_CONVERT().
February 16, 2025 at 10:03 pm
when I choose the Design option for the table, the new column does not appear in the design window.
I cannot help you with this as I do not use...
February 16, 2025 at 9:50 pm
You need to put SQL in a Query Window. This can be opened on the top left of SSMS.
dbo is the default schema. You can create your own schemas to...
February 16, 2025 at 12:50 pm
This is a MS SQL Server site so will not normally deal much with web developemnt. It may be best to look at https://stackoverflow.com although you had better check...
February 13, 2025 at 7:27 pm
While better than nothing, I doubt many people use maintenance plans. I use the following:
and
February 10, 2025 at 8:14 am
One solution would be to copy the data to a centralized database/warehouse and report from that.
February 4, 2025 at 2:50 pm
I have never come across this either.
The first thing I would do is run Brent Ozar's sp_blitz. As well as the health check, there are parameters which allow you...
January 9, 2025 at 2:46 pm
The simple approach would be to put your query in a CTE with
,ROW_NUMBER() OVER (PARTITION BY Model ORDER BY Cal DESC) AS rn
and then SELECT FROM the CTE WHERE rn...
January 8, 2025 at 9:59 pm
Do you have any DDL and test data to demonstate this?
January 8, 2025 at 9:53 pm
1. If RT.coloumnC etc are strings, you could try something like:
RT.coloumnC='something' COLLATE <RT.coloumnC collation>
2. If #lt is not too big, you could try creating a remote SP and passing the...
January 6, 2025 at 5:46 pm
¿Qué?
Just send an html email with the table in the body text.
December 31, 2024 at 4:19 pm
Viewing 15 posts - 46 through 60 (of 1,489 total)