Viewing 15 posts - 436 through 450 (of 13,429 total)
stakhilmadivada - Tuesday, June 13, 2017 11:25 AMFor every Device ID it returns the both data and unit fields.
but the Data you provided...
June 13, 2017 at 11:45 am
the root of all harddrives are protected. N'D:\MyTrace.log' is invalid due to those protections.
you pretty much HAVE to put files in a subfolder.
June 13, 2017 at 10:27 am
I think that's partially incorrect.
what I read is that a linked server featuring the SQLOLEDB is deprecated, and must be replaced with a server using the SQLNCLI) driver instead.
June 13, 2017 at 10:22 am
June 13, 2017 at 9:59 am
easy fix, the path for the file is wrong. it has slashes like a UNC path,a s well as a drive letter. it's one or the other. Maybe you mean...
June 13, 2017 at 9:46 am
this was kind of interesting, so I imported the file into a varchar max column, and used two CrLf as the delimiter, and the pipe character as the column delimiter(since...
June 13, 2017 at 8:37 am
i have a process that does something exactly like this; the issue is the remote server has the "freshest" data, but we want the dbo table available without significant locking.
June 7, 2017 at 6:20 am
for a stored procedure, the EXECUTE AS must name to a USER in the database
it cannot use a LOGIN who is not an EXPLICIT USER in the database.
June 7, 2017 at 6:05 am
if you keep insisting on active connections, then as Gail said, the answer is basically no.
people do not connect to tables.
you cannot track who is actually...
June 6, 2017 at 12:29 pm
maybe the system DMV sys.dm_db_index_usage_stats has info you might be looking for?
with that, you could see how many times a table has been accessed,and the lasttime it was accessed,...
June 6, 2017 at 10:32 am
Database Mail is asynchronous, so anything using sp_send_dbmail just inserts mail into the table dbo.sysmail_mailitems, which the engine just sends the emails out one at a time anyway.
throughput wise,...
June 6, 2017 at 8:07 am
what specific error are you getting?
I would suspect that the issue is you are using a temp table instead of a permanent table,and unless you've got the setting "RetainSameConnection"...
June 6, 2017 at 7:55 am
i did this once.
once.
my mail server / domain was banned by most large ISP's for spamming. my list of contacts was just shy of 5000 people, and i...
June 6, 2017 at 5:52 am
the items are from cache, and are not the currently running as of this moment queries; the users could have disconnected long ago. you also get an execution count, so...
June 5, 2017 at 6:51 pm
SQL does not keep a history of data changes.
unless you already have some kind of audit system in place, an audit table with a trigger, change tracking, change data...
June 5, 2017 at 2:14 pm
Viewing 15 posts - 436 through 450 (of 13,429 total)