Viewing 15 posts - 1,921 through 1,935 (of 7,168 total)
How many violations are needing to be submitted at one time from the front-end? Or are you passing them to the database one-at-a-time? I am thinking table-valued parameters may be...
February 15, 2013 at 4:13 pm
How large of an attachment are we talking? msdb.dbo.sp_send_dbmail can send query results as a csv attachment but there are limits on the size of the attachment it will send...
February 15, 2013 at 3:51 pm
1. Create 3 Variables
- one of type Object that will contain the list of databases
- one of type Int to contain the database_id
- one of type String to contain the...
February 15, 2013 at 3:47 pm
ErickTreeTops (2/10/2013)
February 15, 2013 at 3:17 pm
Brent Ozar and Paul Randal both have posted research and findings on the topic. Google or Bing are your friend there. I just pulled back a bunch of relevant results.
February 15, 2013 at 2:49 pm
800MB is an awfully large XML document. Note that when represented in memory as an XMLDocument object it will occupy far more space that just the file on disk. How...
February 15, 2013 at 2:28 pm
SSIS can page data to disk if there is memory pressure. In what format the data is written though, I have no idea. Nor do I know where it is...
February 15, 2013 at 2:25 pm
Please do not cross-post. It fragments replies and wastes people's time.
Direct replies here:
February 15, 2013 at 2:07 pm
Nice work. For keeping log backups around...it depends on how long you need to retain point-in-time recovery. I usually keep mine around for ~10 days, or whatever my log shipping...
February 15, 2013 at 2:00 pm
They are Event Data columns, not Events. When you are defining the Trace make sure you capture the StartTime and EndTime columns on all Events you add to the Trace.
Read...
February 15, 2013 at 1:57 pm
The information you have provided does not compute. Are you sure your login has access to that table?
What does this return?
SELECT *
FROM OPENDATASOURCE('SQLNCLI', 'Data Source=DESTSERVR\INSTANCE;Integrated Security=SSPI').TESTTBL.sys.tables
WHERE...
February 15, 2013 at 12:55 pm
Who said anything about OPENQUERY? You do not need OPENDATASOURCE to work with a Linked Server.
February 15, 2013 at 12:02 pm
lsalih (2/15/2013)
EXEC sp_addlinkedserver
@server=N'Webdev',
...
February 15, 2013 at 11:45 am
See if this gets you there:
February 15, 2013 at 10:59 am
opc.three (2/15/2013)
February 15, 2013 at 9:49 am
Viewing 15 posts - 1,921 through 1,935 (of 7,168 total)