Viewing 15 posts - 61 through 75 (of 178 total)
Did you check what GilaMonster said? Is there an application creating these?
Since your backup is using a virtual device and the databases have IDR in them, I'd guess your...
July 28, 2009 at 8:15 am
Running SQL Spotlight. I like that you can define what to get notified on, create custom queries, and also how you can go back in time through the historical...
July 24, 2009 at 6:47 am
Lost write is when SQL writes data the OS returns that the write was successful, but it didn't actually get written to the media because of some underlying failure.
A stale...
June 10, 2009 at 6:27 am
You might consider trying (based on the last query posted) to remove that exists piece to stop your query from running many sub-queries against your database (it will run a...
May 27, 2009 at 9:06 am
Something like this might run better for you if you only have a few columns to match (like the example) and your id cannot be null.
SELECT distinct isnull(a.id, b.id)
FROM A...
May 27, 2009 at 8:55 am
same problem occurs with removing of backup file from server when it reached to tape
This is confusing.. Are you saying you backup file to disk, then tape picks it...
May 20, 2009 at 5:17 am
I had to try this, looked very interesting.
It worked for me. The only thing that was a bit different that what you mentioned was the output of DBCC PAGE....
May 15, 2009 at 10:08 am
It will act as normal. Backing up your database (Full) doesn't truncate the log. To restore your production, you would grab your latest full backup and TL backups...
May 15, 2009 at 9:31 am
DUPLICATE
see http://www.sqlservercentral.com/Forums/Topic715813-146-1.aspx for re-post.
May 13, 2009 at 5:35 am
Post your error messages, everything you see.
May 13, 2009 at 5:34 am
You can pivot the results. You have to make sure the table names are correct in the query or it will produce null value.
INSERT [dbo].[SIRS_Counts]
SELECT [Col1],[Col2],
[Col3],[Col4],
[Col5],[Col6],
[Col7],[Col8],
[Col9], GETDATE() [RecordDate]
FROM (
SELECT...
May 13, 2009 at 5:29 am
If you just want to compare counts, create a Linked Server between them and try this query out (replace server1.database and server2.database):
SELECT object_name(a.object_id), a.object_id, a.[rowcount], b.object_id, b.[rowcount]
FROM (
SELECT p.object_id [object_id],...
May 12, 2009 at 11:01 am
Since varchar(max) replaces text data type, does changing the input column type to text work?
May 11, 2009 at 6:46 am
You need to be more clear & proof read before posting.
Are you saying your test box has an SQL 2000 instance installed already and you want to also install an...
May 11, 2009 at 6:33 am
Viewing 15 posts - 61 through 75 (of 178 total)