Viewing 15 posts - 436 through 450 (of 588 total)
I do believe Citrix can use SQL to store information about users. Mostly an issue where you have a Citrix farm I imagine.
May 15, 2007 at 12:30 am
And people wonder why I have copies of all install CD's from 7.0 and up at home
May 14, 2007 at 1:45 pm
At the 2 companies I have worked that had a failover server we tested at least once every 3 months, pluss whenever we had patching of course. The every 3...
May 14, 2007 at 7:10 am
Good reason: Brain fart?
I have a few tables without indexes, but those are for like where I am storing information about logins and I am more worried about inserts being...
May 14, 2007 at 7:02 am
I put this into production this weekend, and seems to be working fine so far. Here are the additional steps I took to lower the risk of a potential server...
May 14, 2007 at 6:27 am
I think the ability to jump into something you are unfamiliar with and make it work might be the biggest thing for a senior DBA. After 12 years of this...
May 11, 2007 at 6:53 am
Yes. Just use two seperate update statements
create procedure usp_UpdateTwoTables
as
begin
update table1
set Column1 = 'a'
update table2
set Column2 = 'b'
end
May 11, 2007 at 6:35 am
After 6.5 I don't think I have had scheduled reboots of servers with SQL on it, and then mostly because of a memory leak in a custom made XP. Of course...
May 10, 2007 at 1:08 pm
oops missed the part about doing it to fix collation. NM me
May 10, 2007 at 1:04 pm
Any reason why you can't do a backup/restore?
May 10, 2007 at 11:14 am
Well that was interresting. Either the documentation needs to be better or I missed something.
Restarted the server with -f -m flags (minimal, single user). Then I could log on and...
May 10, 2007 at 9:57 am
ok found the reason, failed to put in the database name the table was in. Now, is there any way to bypass this? Even DAC won't work.....
May 10, 2007 at 9:17 am
You can use a variable with XML data type to pass XML into another stored procedure.
May 10, 2007 at 6:31 am
Use SQL Profiler. Under Security Audit there is a Audit Backup/Restore Event. Will tell you, among other things, HostName from where the backup was initiated, the login name and the...
May 10, 2007 at 6:28 am
Viewing 15 posts - 436 through 450 (of 588 total)