Viewing 15 posts - 61 through 75 (of 1,837 total)
The message means exactly what it says, SQL Server 2014 only supports the Tabular functionality in Enterprise or Business Intelligence edition:
Standard edition does support most of multi-dimensional functionality:
April 15, 2020 at 7:05 pm
So are you querying the database that is the target of the replication or the source of the replication? I'm still not sure. Also if you already have 2 copies...
April 14, 2020 at 6:58 pm
I think your request raises more questions in me than answers:
April 14, 2020 at 5:28 pm
...Actually my task was to update the data across different servers in different locations where the data will be same in all servers. Any update\Delete\Insert in any table should...
April 13, 2020 at 8:00 pm
Are Database1 and Database2 on the same server instance or are they separate?
The triggers could work if they are on the same server instance, but could be difficult to write...
April 10, 2020 at 7:45 pm
You can use DBCC LOGINFO or sys.dm_db_log_info to determine which VLF's are available - as long as that database is not part of an AG. The Status column will...
April 1, 2020 at 9:05 pm
To figure out why your log file grew so much, you may be able to look at the default trace to see what caused the growths:
DECLARE @path...
April 1, 2020 at 8:22 pm
Okay, so you do have some room here. Do you know how much your files are growing by week or by month?
April 1, 2020 at 8:16 pm
How much free space is on that D: drive as a whole, and are the data files also on the same drive?
April 1, 2020 at 7:42 pm
With that much free space it should be able to shrink some after a transaction log backup. Unfortunately I don't know a way to determine which VLF in the transaction...
April 1, 2020 at 7:23 pm
Try this to see why it can't reuse the log space:
SELECT database_id, name, recovery_model_desc, log_reuse_wait_desc FROM sys.databases WHERE recovery_model_desc <> 'SIMPLE'
--edit oops I read your results wrong
April 1, 2020 at 7:19 pm
Msg 8985, Level 16, State 1, Line 2
Could not locate file 'ExampleDB_log' for database 'ExampleDB' in sys.database_files. The file either does not exist, or was dropped.
Check how much of...
April 1, 2020 at 6:56 pm
...I have no room on my server to back it up.
And hopefully you are putting your backup files somewhere other than the server you are backing up correct?
April 1, 2020 at 6:47 pm
What are the errors you receive with the large script?
April 1, 2020 at 6:19 pm
Since this is a transaction log file, what Jeffrey says holds true, you don't need the TRUNCATE ONLY.
What I think is more important, before you try this, do you know...
April 1, 2020 at 6:15 pm
Viewing 15 posts - 61 through 75 (of 1,837 total)