Viewing 15 posts - 751 through 765 (of 1,409 total)
thava (8/23/2013)
The result is
PNameManagerDeveloper
Testdbodbo
TestdboINFORMATION_SCHEMA
Testdbosys
Testguestdbo
TestguestINFORMATION_SCHEMA
Testguestsys
but expected is
PNameManagerDeveloper
Testdbodbo
guestINFORMATION_SCHEMA
sys
with a minimal scan count and read count
If you want the result as expected I think you need to build a SSRS...
August 23, 2013 at 5:45 am
Jason.Reeves (8/22/2013)
4 Nodes - 4 different drive letters with multiple disks arrayed under.
You mean: 4 instances - 4 different drive letters with multiple disks arrayed under.
August 23, 2013 at 5:38 am
terry999 (8/23/2013)Any ideas what I should investigate next time I'm connected to this machine. Trying to build a list of things to check when I next can access this machine....
August 23, 2013 at 5:32 am
The error in the summary refers to the failure to update the shared features. The instance itself is likely to be updated and stating the correct version number. Look in...
August 23, 2013 at 5:13 am
GilaMonster (8/23/2013)
What do you mean 'the delete does not delete'?Implodes the server and creates a black hole in the server room?
ROFL :rolleyes:
If that happened I would say the delete definitely...
August 23, 2013 at 4:59 am
Can you tell the error message you got when you tried to restore the third LOG backup? This could give some information about why the chain was broken. It could...
August 23, 2013 at 4:55 am
To get the NULL value in your results, you will need to change your WHERE clause to
WHERE name <> 'Check' OR name IS NULL
Or you need to rewrite your WHERE...
August 23, 2013 at 4:49 am
Specific for the more write intensive filegroups the performance will benefit with 4 datafiles vs. 1 datafile. With 4 datafiles the I/O will be spread over all datafiles (when they...
August 23, 2013 at 3:20 am
At first glance (I haven't analysed or executed the code) it looks like you need extra double quotes around the path/filenames.
Try changing this part:
...
CREATE DATABASE [CoreDB] ON PRIMARY
( NAME...
August 23, 2013 at 3:01 am
Most of the time a database benefits from more then one datafile. Also use multiple filegroups to seperate your data (historical vs. actual and/or clutered indexes vs. non-clustered indexes and/or...
August 23, 2013 at 2:51 am
Can you check in the SQL Error logs what is causing these memory dumps? Also check the Windows Event logs. I expect some severe error messages just before the dumps...
August 23, 2013 at 2:05 am
The time it takes to failover is very long because of the number of databases. To become online SQL needs to open filehandles to all database files (each database has...
August 22, 2013 at 11:39 am
Maybe you would be better off using:
SELECT
CASE (SELECT COUNT(1) FROM table WHERE...)
WHEN 0 THEN 'none'
WHEN 1 THEN 'single'
ELSE 'multiple'
END
and then using your simplified or complex query depending on the results.
August 22, 2013 at 10:00 am
The MAX statement will only return one single value. You can get the desired results using the TOP clause:
SELECT TOP 2
change_id
FROM table_a
ORDER BY change_id DESC
August 22, 2013 at 9:52 am
It looks like your configuration of Database Mail isn't correct. Run sp_configure to see if DatabaseMail XPs are enabled and then delete and reconfigure your mail profile and account settings...
August 22, 2013 at 8:03 am
Viewing 15 posts - 751 through 765 (of 1,409 total)