Viewing 15 posts - 451 through 465 (of 749 total)
You can eliminate irrelevant datatype columns using:
and columns.system_type_id IN (35,99,167,175,231,239,241,231)
hopefully you're not using sql_variant (98)
April 20, 2022 at 9:56 pm
It should be possible. The stored procedure to create a subscription is ReportServer.dbo.CreateSubscription. You could either trace a call to the proc when creating a subscription via the RS Manager...
April 20, 2022 at 4:33 pm
Depends on what your query is doing. Cast or Convert does whatever your query tells it to do.
If you are only using it in a select (only returning data), then...
April 20, 2022 at 1:16 pm
Is it hidden? Look in Report > Manage > Properties

April 19, 2022 at 9:13 pm
Use variables to determine the logic for the comparison values -- e.g.,
DECLARE @dayOfMonth int = DATEPART(DAY,GETDATE())
DECLARE @minDate DATETIME = CASE WHEN @dayOfMonth < 16 THEN DATEADD(mm, DATEDIFF(mm,...
April 19, 2022 at 6:57 pm
Advantages of pre-allocation: Queries don't die when you suddenly run out of room in the middle of a transaction. No need to wait for file growth. No risk of something...
April 18, 2022 at 8:25 pm
Are you doing index maintenance before the backup?
April 15, 2022 at 12:57 pm
"so i have not taken a backup of the database, because it is not required as my Data balance plan is , balancing the data according."
And now you have no...
April 14, 2022 at 1:05 pm
I liked Telerik reports when I was using it a few years ago. I haven't used it, but generally see good comments on DevExpress. Both appear to be...
April 13, 2022 at 8:25 pm
You can use STRING_SPLIT to turn the delimited data into separate rows.
You can use CROSS APPLY (if product_descr is never null), or OUTER APPLY (if there are nulls) after...
April 13, 2022 at 7:03 pm
You haven't mentioned the mdf file (primary data file). The corruption is in your mdf and/or one or more of the ndf files.
You restore from backups. Do you have recent...
April 13, 2022 at 1:12 pm
Viewing 15 posts - 451 through 465 (of 749 total)