Viewing 15 posts - 46 through 60 (of 88 total)
The correct answer is 1 INNER JOIN is used. When the database engine executes the SELECT query to return all rows that have an email address of 'jdoe@email.com' the following...
May 12, 2010 at 10:14 pm
Hello All,
After few days struggle, I have sorted out all the issues I had been facing in the SQL Server 2008 Cluster install on Windows 2008 R2 server.
First point/Prob -...
May 9, 2010 at 2:53 am
Lost my points too because of the READ_ONLY option.
But I found experiments on MODEL regarding the collation - http://sqlmusings.wordpress.com/2008/10/11/fixing-collation-the-experiments/
April 17, 2010 at 8:18 pm
I belive WMI query in SQL Server Alerts only works along with SQL Server EVENT NOTIFICATIONS. So if SQL Server EVENT NOTIFICATION doesnt contain the EVENT for memory usage (RAM...
April 7, 2010 at 2:52 am
I use the below WMI query to find the balance memory available in a server.
strComputer = "."
Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colSettings = objWMIService.ExecQuery ("Select * from...
April 6, 2010 at 9:04 am
Many thanks for that guys..
April 5, 2010 at 12:07 pm
Please ignore this post. Misunderstood.
---------------------------------------------
In fact, NEWID() is also not throwing error while doing the multiple inserts of the same record
CREATE TABLE TestTable8(
col1 int,
col2 UNIQUEIDENTIFIER DEFAULT NEWID())
INSERT INTO TestTable8...
April 5, 2010 at 10:56 am
So, does this mean NEWSEQUENTIALID() cannot be used in tables undertaking in merge replication?
If so, we have to enforce the unique constraint explicitly for the proper working of merge...
April 5, 2010 at 10:51 am
Ray Laubert (4/5/2010)
You can query the sys.dm_os_performance_counters for object name = SQLServer:Memory Manager.It will give you Total Server Memory that SQL is using and Target Server Memory.
I wanted to set...
April 5, 2010 at 9:52 am
If hard coded UNION statement is used, then whats the need for the @param1 variable here.
April 4, 2010 at 11:51 pm
Are you a local admin in the server that you are doing the installation?
April 4, 2010 at 11:05 pm
So does this mean WMI query is the only approach to get the information (alert) about the memory usage of the physical server where the SQL Server resides.
April 4, 2010 at 12:07 pm
Hi all,
Is there a way to get an alert from SQL Server itself when a particular limit of Total available memory in the Server has been reached, not using...
April 4, 2010 at 9:51 am
Hi Nikhil,
You will have to do a bit reading about the FIXES in SQL Server 2005 SP3 CU1.
Certain fixes are performance enhancements, like below:
50003965956686 FIX: When you run a...
April 4, 2010 at 3:47 am
Hi all,
Its been a while but I tried this QoD today.
Even though the question is wrong and it returns error, the second statement (SELECT USER_NAME()) does provide a result.
The result...
April 4, 2010 at 1:58 am
Viewing 15 posts - 46 through 60 (of 88 total)