Viewing 15 posts - 7,141 through 7,155 (of 14,953 total)
Instead of trying to store the AD data in the table, why not just query that when you need it?
January 29, 2010 at 8:44 am
You can reset the keyboard shortcuts in the Tools, Customize window.
January 28, 2010 at 2:39 pm
Alvin Ramard (1/28/2010)
He may have meant that he has "read the books" and that is...
January 28, 2010 at 9:38 am
Krasavita (1/28/2010)
January 28, 2010 at 9:32 am
You can end up with injection attacks via sp_executeSQL if you build an SQL string and then execute that, same as Exec.
For example, if you want to pass in a...
January 28, 2010 at 7:44 am
Number of databases per server only matters when it starts to cause maintenance problems.
For example, if you split up data between multiple databases, and then have to synch it for...
January 28, 2010 at 7:33 am
SQL Express has hard limits on how much RAM it can access, but that's probably not the actual problem. I would tend to suspect that Access is what's eating...
January 28, 2010 at 7:30 am
Lynn Pettis (1/28/2010)
In addition, the general users shouldn't even have QA/SSMS. The only people that should probably have these tools are DBA/Developers.
It might be difficult to block them from...
January 28, 2010 at 7:26 am
iamthemanx (1/27/2010)
Unfortunately , I can not post the code here (data privacy and all that stuff) and honestly, I do not want to dig...
January 28, 2010 at 6:48 am
Are you saying that if you clear the buffers, the proc takes seconds to run the first time, and then keeps going that way?
I've never seen that behavior. But...
January 27, 2010 at 2:55 pm
Does this do what you need?
select top 1 *
from My_Table_History
where sName = 'BIGTABLE_A'
and dtAsOf between @dtStart and @dtEnd
order by hID
union
select top 1 *
from My_Table_History
where sName = 'BIGTABLE_A'
and dtAsOf between @dtStart...
January 27, 2010 at 1:09 pm
In the options, there's a setting for the maximum string length to display. Check that.
January 27, 2010 at 1:01 pm
I store them in the database, so they get backed up along with the jobs that call them, when I back up the system databases (msdb to be precise).
January 27, 2010 at 12:27 pm
That is correct. 64-bit SQL does not support SQL Mail. It does support DBMail.
January 27, 2010 at 12:25 pm
No, you don't need a separate SQL account.
The service account is the one that SQL is running under, as a Windows service. Do you know what a Windows service...
January 27, 2010 at 11:24 am
Viewing 15 posts - 7,141 through 7,155 (of 14,953 total)