Viewing 15 posts - 37,246 through 37,260 (of 39,720 total)
Didn't get through the white paper, but did look at 3 of their sample apps. All look the same. Not sure there's anything great here.
Steve Jones
August 5, 2002 at 9:48 am
thanks for the comments. I know I needed a refresher (which got me writing).
Steve Jones
August 5, 2002 at 9:46 am
Haven't seen too many that work well. There was one called My Little SQL or something like that, but I didn't try it.
Here's one for MySQL:http://anse.de/mysqlfront/
Another for MySQL, Postgres, Oracle:
...
August 5, 2002 at 9:45 am
It must rollback a transaction, so it may have been stuck. I'd bet that it would have eventually killed the process, but I have seen things hang and a reboot...
August 5, 2002 at 9:40 am
There are extended stored procedures that link SQL Server to mail (the xp_startmail, xp_sendmail, etc.).
Some of these include the ability to read mail and you can process the items...
August 5, 2002 at 9:37 am
Try restoring with no log. I'm surprised it wants so much temp space, but it may be a check of x times the size as a just in case.
Steve Jones
August 5, 2002 at 9:35 am
sp_dropserver
sp_Addserver <new name>,local
will rename the server
Steve Jones
August 5, 2002 at 9:22 am
I usually do two things.
1. Measure the time (use select getdate() around the queries) on the server or client.
2. Check the subtree cost. The percentage cost will always be 1...
August 5, 2002 at 9:17 am
Roll with fulls every hour (or every 30 minutes) and then logs every minute or two.
Be sure you get these off the local server in case the server itself fails.
Steve...
August 2, 2002 at 2:46 pm
Sorry, I see what you mean.
In the code, the first replace is a single quote, followed by 2 single quotes, then another single quote. Why 4?
1 - open string
2...
August 2, 2002 at 2:45 pm
I roll with logs every hour and once a day backups. We may shrink this down. However, it's a question of restore time. How quickly do you want to be...
August 2, 2002 at 2:38 pm
Tough to say. Are teh servers the same hardware? Could be that. Could be fragmented. Might want to check with dbcc showcontig and rebuild clustered indexes.
Steve Jones
August 2, 2002 at 2:29 pm
Thanks
.
I need to modify this, but the main point still stands. Make someone write some code and use questions that show someone understands SQL, NOT that...
August 2, 2002 at 2:27 pm
Each single quote must be doubled for SQL to work a ' repeated as '' is not the same as ". They are two difference characters.
If you replace(@string, '''', '''''')...
August 2, 2002 at 9:57 am
You are welcome and glad to help.
BTW, I usually use a Domain account so I can get to mail, remote backups, etc. Local Admin, not Domain admin.
Steve Jones
August 2, 2002 at 9:53 am
Viewing 15 posts - 37,246 through 37,260 (of 39,720 total)