Viewing 15 posts - 706 through 720 (of 22,184 total)
Nope. Not really. There's no tracking mechanism for table, view or index. Not like what you're asking for.
What you can do is track the queries in the system using
November 1, 2022 at 12:39 pm
No money from it, but I built a database and an application that stored information about the location of veterans grave sites. This was then used by the Veterans of...
October 31, 2022 at 12:57 pm
Excellent feedback. Thanks Peter. Couldn't agree more.
October 30, 2022 at 9:36 pm
Jeff's on target from what I can see. I don't see both queries and locks there in a way that you can accurately associate them with one another.
October 25, 2022 at 12:47 pm
Oh! Missed that. Sorry. Yeah, you're hammering your CPU with that. I'd strongly suggest stopping.
October 24, 2022 at 3:57 pm
Considering there's something urgent going on, why not tell us exactly what it is that you're trying to do and then we might be able to better help. All these...
October 24, 2022 at 1:35 pm
Sp_whoisactive is querying the DMVs, and, depending on how you run it, an aggregation of multiple runs. Profiler is capturing through trace events, one execution at a time, providing more...
October 24, 2022 at 1:28 pm
You sure it's a table and not a function or a view? A simple select on one table shouldn't place locks on a second table, even if there are foreign...
October 21, 2022 at 3:20 pm
Whoever did the install needs to add your login to the admin role on the instance. And yeah, you need to be admin on the SQL Server instance to actually...
October 19, 2022 at 1:53 pm
Like anything else, practice, practice, practice. Create a database in Azure SQL, then figure out how to access it, how it gets backed up, how to restore it, build tables,...
October 19, 2022 at 1:51 pm
To only do a subset of the data, you're very limited. Transactional replication is probably your best bet, but you will need to deal with the separation of the domains,...
October 14, 2022 at 1:21 pm
There are probably an infinite number of ways to schedule a backup. However, most people will use SQL Agent, which is built right into SQL Server instances (assuming you're...
October 14, 2022 at 1:18 pm
Dataminds Belgium 10/11 oktober was great
100% agreement
October 13, 2022 at 3:27 pm
Extended Events are your bestest friend. Specifically, in addition to the normal query captures of rpc_completed and sql_batch_completed, you can look at ole_db_data_reader to see remote queries specifically.
October 13, 2022 at 2:34 pm
Viewing 15 posts - 706 through 720 (of 22,184 total)