Viewing 15 posts - 136 through 150 (of 468 total)
You might as well try DB Visualizer. It works great with most RDBMS.
Thanks.
January 7, 2010 at 12:12 pm
Bru Medishetty (1/7/2010)
Krasavita (1/7/2010)
How many db can we have per server and how much memory in total can I have?Thank you
You can start creating databases one by one until it...
January 7, 2010 at 11:45 am
Ali_SQLDBA (1/6/2010)
My cluster is a AA cluster. So, I need to install on both nodes then. correct?
If you only have single instances on both the Active nodes then you only...
January 6, 2010 at 11:52 am
Ali_SQLDBA (1/6/2010)
How is this installation of patches is different for cluster from a standalone.Thanks
Ali
Major difference being the downtime associated with applying patches on a Standalone server.
Thanks..
January 6, 2010 at 10:02 am
Just to add my take on becoming a master, I guess one needs to follow on things told by Gail,Steve,TheSQLGuru and any other SQL Expert that I fail to mention...
January 6, 2010 at 9:55 am
Mike01 (1/6/2010)
January 6, 2010 at 9:39 am
I didn't knew rebooting Production was that damn easy..:w00t:
If I know my manager correctly, he would just shoot me in my arse ➡ with his .5 Caliber gun if I...
January 6, 2010 at 9:34 am
krayknot (1/5/2010)
sanketahir1985 (1/5/2010)
1. check for free space on drive where tempdb is stored
&
2. Try to truncate log of tempdb only if no users are using tempdb...
January 6, 2010 at 9:27 am
A better way of doing it without using CTE or Update statement is as below.
insert into dbo.Employee(id,name,pg,street,city,state)
select a.id,'Alex',a.pg,b.street,b.city,b.state
from
dbo.qualification a
join
dbo.address b
on
a.id = b.id
This should be what you need..
Hope this helps...
January 6, 2010 at 9:04 am
Thanks jcdyntek. It works well for me.
Lowell, I checked all the chars to be Ascii 160, so I am good there. Thanks for bringing it to my attention though..
December 30, 2009 at 9:58 am
Thanks Gsqaured..I ran the query below for the record with phonecode = 54 for which I got the error as
select ASCII(substring(phonecode,3,1)) from dbo.Codes
where id = 11
And the result was 160...
December 30, 2009 at 8:58 am
freeman.e.l (12/23/2009)
1: use sp_who, and kill to kill processes that block your backup
The database will halt the processing of anything you kill.
2: perform backup in single user mode:...
December 30, 2009 at 8:47 am
Pavel..your query returns result in the format I needed. I need to use it to do the inserts now..will follow up with you guys if I get stuck somewhere 😉
Thanks..
December 11, 2009 at 11:39 am
Ryan, I tried your query, it works good, but the format I need is different. I am posting your result set as attached along with the desired format from your...
December 11, 2009 at 11:24 am
Thanks Ryan and Turner..I will try out both and let you guys know which one works for me.
As I have in excess of 20K records that i need to split...
December 11, 2009 at 9:54 am
Viewing 15 posts - 136 through 150 (of 468 total)