Viewing 15 posts - 7,411 through 7,425 (of 9,253 total)
MonsterRocks (11/14/2010)
declare @x2 decimal(38,7)
set @x2 =22225655.95163
set @x1=convert(nvarchar,@x2)
set @x2=convert(decimal(38,7),@x2)
print @x1
its output is 22225655.9
wht shud i pit in scale if i want to display 7 digits...
November 14, 2010 at 5:21 am
Use the following to pre size the primary data file
alter database MYDB modify file (name = MDFLogicalFileName, size = SizeInMBorGB)
e.g. size = 100MB or size = 100GB
November 14, 2010 at 5:10 am
to check the last\current id column value used execute the following query
dbcc checkident('tablename', noreseed)
November 14, 2010 at 3:45 am
casting binary or varbinary can be unreliable depending on the collation, you would probably want to use sys.fn_varbintohexstr
The best method is detailed at this link and converts to all bases
November 14, 2010 at 3:36 am
switch to bulk logged rather than simple recovery, alter index rebuild is minimally logged in this mode too!
November 13, 2010 at 12:58 pm
download my guide at this link and check section 4.2 "add a cluster node".
November 13, 2010 at 12:53 pm
If you look closely at the installer you'll see 2 options, one for create a new SQL server failover cluster and one for add a node to a SQL server...
November 13, 2010 at 10:55 am
with all that's mentioned here, this is why you test before migrating Live. Check with internal devs\vendors whether they support the RDBMS platform or not!
One thing that can issues between...
November 13, 2010 at 7:15 am
Keith Hays (11/12/2010)
The process to do this from sp2 is problematic at best.
not problematic, but does require downtime of the other nodes in order to patch the new passive...
November 13, 2010 at 7:12 am
Launch the sql server 2008 installer on node b and select add node to a sql server failover cluster.
Step through the wizard and when prompted select the default instance...
November 13, 2010 at 4:28 am
hydbadrose (11/12/2010)
but this is sql 2008 servers. will you follow the same method or through the installer?
So why have you posted in the SQL Server 2005 forum then???
No, the install...
November 12, 2010 at 4:55 pm
To add node b to the default clustered instance go into add\remove programs on the active node and under the currently installed programs click the SQL Server 2005 entry and...
November 12, 2010 at 1:20 pm
you have to launch the installer on the passive node and select the option "add node to a SQL Server failover cluster".
November 12, 2010 at 11:53 am
BL Hayes (11/11/2010)
These were recommended to improve the performance of the SQL server.
by who?
I would recommend you change this
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Windows Server 2003,
Standard" /noexecute=optout /fastdetect /execute /nopae /3GB /Userva=2650
To this
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Windows...
November 11, 2010 at 11:57 am
Dave D. (11/11/2010)
the idea that every node has it's own resource database doesn't sound logical to me.
It's to allow the removal of updates and service packs.
November 11, 2010 at 6:58 am
Viewing 15 posts - 7,411 through 7,425 (of 9,253 total)