Viewing 15 posts - 1,081 through 1,095 (of 2,858 total)
Also, Microsoft has some documentation on what to try:
The important tip they offer is:
If the last attempt did not start the external program, verify that the Database Mail External Program...
June 11, 2021 at 2:22 pm
I'd start by checking the logs. Logs on the source and the destination servers. Both SQL and Windows logs.
June 10, 2021 at 10:08 pm
Personally, I would look at getting a reporting tool like RedGate SQL Monitor (it is what I use, I do not work for RedGate).
Now, in my mind, a failed job...
June 10, 2021 at 5:28 pm
So since you are ordering by a column you are not using in the SELECT list, you have 3 options if you are using the DISTINCT keyword:
1 - add the...
June 10, 2021 at 5:06 pm
If operator ID and badge ID are unique in the Operator table (ie it is a 1:1 mapping of operator ID to badge ID), then that isn't going to be...
June 10, 2021 at 4:21 pm
I was thinking about this and is the data accurate/valid as it is currently?
What I mean is since you are getting duplicates, that makes me think that a single badgeID...
June 10, 2021 at 2:54 pm
What is the value of the following:
string strConnection = ConfigurationManager.AppSettings["GroupStatus"];
?
My thoughts are that strConnection is connecting to MASTER or the user specified in the connection string has master as the...
June 10, 2021 at 2:38 pm
I think first you need to understand the difference between a database snapshot and a backup. The snapshot just marks a point in time of the current database state and...
June 9, 2021 at 5:55 pm
The documentation says:
AUTO
This option allows SQL Server Database Engine to select the lock escalation granularity that's appropriate for the table schema.
If the table is partitioned, lock escalation will be allowed...
June 9, 2021 at 5:36 pm
My first step when doing the statistics time or IO related analysis is to turn off the execution plan. That is going to skew your information. I would also recommend...
June 9, 2021 at 2:34 pm
I think the easiest way is going to be by casting it to VARBINARYA(MAX) and then manually going through.
So something like this:
SELECT CAST('HELLO' AS VARBINARY(MAX))
Which gives you:
0x48454C4C4F
0X...
June 8, 2021 at 8:53 pm
Was doing a bit of googling on the ACE 12 and 16 drivers and found this article:
Apparently in some versions of the driver, the file name is truncated to be...
June 8, 2021 at 8:21 pm
On a slightly different note, I would be hesitant about using the MONEY data type as it is an approximate data type. NUMERIC is likely going to be a better...
June 8, 2021 at 6:12 pm
quick google:
Linked servers can use remote logins too.
Here is how to add a remote login:
June 8, 2021 at 6:04 pm
In the end, it REALLY depends on what you want to capture. What data is interesting to you and will save your bacon in the event something seems wrong. Can...
June 8, 2021 at 5:59 pm
Viewing 15 posts - 1,081 through 1,095 (of 2,858 total)