Viewing 15 posts - 331 through 345 (of 707 total)
Thanks a lot for your quick response.
But is there any plain sql scripts as I mentioned...pls..
Thanks again
August 9, 2011 at 9:23 am
John Mitchell-245523 (7/29/2011)
You could wait for Jason to come back to you... in the meantime, have you tried my solution?John
Thanks.
Problem is we can't create function or any other objects in...
July 29, 2011 at 6:47 am
Joy Smith San (7/28/2011)
create table sampleData (appID int, appVersion varchar(100))
------
insert into sampleData
SELECT 1, '10.1.55.3366'
UNION
SELECT 1, '10.1.99.64'
UNION
SELECT 1, '10.1.1.1'
UNION
SELECT 1, '10.1.3.9'
UNION
SELECT 1, '9999.9999.9999.9999'
UNION
SELECT 1, '9.0.124.0'
-----------------------------
SELECT appID
,...
July 29, 2011 at 4:10 am
try the below code...
create table sampleData (appID int, appVersion varchar(100))
------
insert into sampleData
SELECT 1, '10.1.55.3366'
UNION
SELECT 1, '10.1.99.64'
UNION
SELECT 1, '10.1.1.1'
UNION
SELECT 1, '10.1.3.9'
UNION
SELECT 1, '9999.9999.9999.9999'
UNION
SELECT 1, '9.0.124.0'
-----------------------------
SELECT appID
, REVERSE(appVersion) as appVersion
,...
July 28, 2011 at 5:11 am
Hello....
One issue.. It dint work for the following values...
9.0.124.0
10.0.22.87
Any idea..?
Thanks.
July 28, 2011 at 4:30 am
This is wonderful.... It might work for me definitely...
Will try and get back...
Thanks to all ......
July 28, 2011 at 1:34 am
Thanks for your quick response.
It wont work for me.
There can be 'n' number of versions, 'n' number of applications and millions of rows. Also the version can be in any...
July 27, 2011 at 8:33 am
Thanks Perry.
Will this work for SQL 2000 as well.? If not whats the equivalent.?
Thanks again.
July 19, 2011 at 2:16 am
Thank you all. Learned something new and important..
Thanks again.
July 6, 2011 at 4:19 am
GilaMonster (7/5/2011)
SQL will try to checkpoint all databases before shutdown, but it usually won't have time if windows is shutting down.
Just one more doubt... Will it be safe if I...
July 6, 2011 at 12:20 am
Thanks Gila.
Am pretty much clear now.
July 5, 2011 at 3:34 am
So ultimately it takes long time while restarting because of "open transactions or committed transactions not written to disk"... Am I right.?
Thanks to all.
July 5, 2011 at 12:20 am
It stops and restarts. Nothing fancier than that.
Restoring or recovering? Two very different things. I'd expect to see recovering after a server restart, I would not expect to see...
July 4, 2011 at 12:57 am
Viewing 15 posts - 331 through 345 (of 707 total)