Viewing 15 posts - 451 through 465 (of 485 total)
You can have more than one instance on the clustered resources however don't try it out for the first time on your production server.
if you have hardware you can setup...
July 16, 2010 at 5:16 am
Can you please provide the source and destination table creation scripts and some sample data? Otherwise no one can really help you.
July 16, 2010 at 5:12 am
You can also create unattended installation using .iss files
July 16, 2010 at 5:10 am
try This.
SELECTo.Name as TableName,
c.Name as ColumnName,
t.name as DataType,
t.length as [DataLength],
c.collation
FROM sysobjects o
JOIN syscolumns c
ON o.id = c.id
JOIN systypes t
ON c.xtype = t.xtype
WHERE o.xtype = 'u'
ORDER By o.name
July 16, 2010 at 4:50 am
Thanks I had a look none of the SQL Server Counters are there. I have been googling and it appears that its a fairly common problem on Windows 2008,...
July 15, 2010 at 6:24 am
As you havn't posted any sample data or table srtucture this example below might not be what your looking for but might give you some inspiration.
It is a cursor which...
July 1, 2010 at 9:00 am
the book does cover everything you need for the exam, the only other real substitute is experience and practice.
I would recommend the testing software from
http://www.selftestsoftware.com.
This helps assess...
June 23, 2010 at 6:09 am
touchmeknot (6/22/2010)
Hello RTaylor/all,I am also interested in taking the certification - 70-433.
Can you please let me know, what are the resources to be followed ?
Thanks in advance!
I would use the...
June 23, 2010 at 5:28 am
Emailed you the two test xml files hope fully should give you some ideas.
June 17, 2010 at 9:18 am
John here is a SPR I created that might help:
I can send you the xml files if you can pm me an email address.
IF OBJECT_ID ('AxSp_Process_XML_File','P') IS NOT NULL
DROP PROCEDURE...
June 16, 2010 at 8:49 am
Technet has a really good whitepaper called:
Failover Clustering for Microsoft SQL Server 2005 and SQL Server 2005 Analysis Services
Writers: Allan Hirt (Avanade, Inc.) and Dave Whitney (Microsoft)
2008 Clustering is...
June 10, 2010 at 4:02 am
I started out in application support for a software house that used SQL Server 6.5 as the database platform, this let me learn alot of usefull skills in SQL and...
June 10, 2010 at 3:56 am
Thanks for the help XML is not my forte but it least gives me a head start. Thank You.
June 2, 2010 at 3:55 am
The second suggestion gave the better performance of the two with exactly the results I was looking for.
Thank You
May 27, 2010 at 6:46 am
Viewing 15 posts - 451 through 465 (of 485 total)