Viewing 15 posts - 136 through 150 (of 233 total)
Compared to your environment, mine is really small. I have to support close to 50 prod Dbs.
May 6, 2013 at 3:13 pm
I do not have any tools, I use batch scripts and SQL jobs to accomplish this. For our most critical applications, I do restore the backups in the Testing environments...
May 6, 2013 at 2:32 pm
What kind of error you are getting? If you post the error message might be able to help you.
May 6, 2013 at 2:22 pm
Thank you both Lowell & Sean for pointing my mistake out, I was thinking about the storing data & haven't read the post properly.
May 6, 2013 at 1:28 pm
As Grant Fritchey said single update statement can not cause deadlock to itself. So run sp_who2 which will give you what processes are running at the time. Look for blyby...
May 6, 2013 at 1:06 pm
If you create Clustered Index on RECORD column of new table. It sorts and stores data in the clustered index key.
May 6, 2013 at 12:49 pm
Not much sure what the question is.. but the below url might slow.
http://guozspace.wordpress.com/2012/05/31/create-htmlxml-emails-using-sql-server/
May 6, 2013 at 12:43 pm
Look at the attached xls and check for the fields marked in red and answer me if you have mapped them right.
May 6, 2013 at 7:48 am
Change name of CTE to something else other than DTAGatHERTZ_RO.
May 6, 2013 at 7:42 am
Tell me what error you got? Also I need data in the form of script where I can insert that in my environment without writing the code.
May 6, 2013 at 4:38 am
The world is going virtual and even we love to run SQL on Actual hardware, we can not stop it. There are so many factors which is driving virtualization.
I would...
May 5, 2013 at 6:33 am
What error it is giving. You have given data for only MatNat table, so I can't replicate it.
But Check the value of Hotel, Nation & Match Table to see if...
May 5, 2013 at 5:18 am
I totally Agree with Gail on that it will be total waste of resource if you do such kind of stuff. But if you really want to do that, you...
May 4, 2013 at 8:12 pm
Because you have made foreign key as MatchID, where as it should be Venue ID.
CONSTRAINT fk_VenueID FOREIGN KEY (MatchID)
It should be :-
CONSTRAINT fk_VenueID FOREIGN KEY (VenueID)
You create 10 rows...
May 4, 2013 at 6:23 pm
I would not suggest going back to SQL 2008 by generating scripts etc. I would rather figure out what is wrong with the current SQL 2008 R2 instance as SQLRNNR...
May 4, 2013 at 10:01 am
Viewing 15 posts - 136 through 150 (of 233 total)