Viewing 15 posts - 46 through 60 (of 66 total)
Just goes to show that your mind sees what it wants to see. I read this three times before posting just to make sure I wasn't missing something. ...
June 17, 2009 at 7:35 am
I ran the following:
create table tb_user
(name varchar(30));
insert into tb_user
values ('Assis Marques new');
UPDATE a
SET Name = 'Assis Marques new'
OUTPUT Inserted.Name, Deleted.Name
FROM tb_User a
WHERE Name = 'Assis Marques';
select * from tb_user;
The result...
June 17, 2009 at 5:33 am
unfortunately, the commands that were used to create the database (ie History) are stored in Master. This is what you are seeing when you query the design. The...
May 14, 2009 at 5:24 am
Views are treated no different than adhoc queries by SQL, unless you are doing Indexed Views. So the Execution plan for both adhoc and view will be the same.
May 13, 2009 at 6:05 pm
The message indicates that you are trying to insert a record with out an ID. The ID field is not null and you are not supplying a value hence...
May 13, 2009 at 2:01 pm
During a failover, transactions will try to commit. If they can not commit they will be rollback and fail. If you manually try to failover, I believe, SQL will...
May 13, 2009 at 1:57 pm
If I remember correctly, this is a simple matter of which was created first.
In the first set, the FK was added after the database was created, hence the need...
May 13, 2009 at 1:49 pm
If you never have taken a MS SQL exam, I would recommend that you also purchase either MeasureUp or Self Test Software Test Prep package. After over 40 Microsoft...
May 13, 2009 at 1:44 pm
Create a view with out the order by. Then select from the view and order by the results. That should work.
May 13, 2009 at 1:37 pm
Sounds like a DLL did not get registered properly. Check the logs for more information. If it identifies the dll then register that dll again. If not...
May 13, 2009 at 1:31 pm
You may want to check this tread out:
http://www.sqlservercentral.com/Forums/Topic553796-291-1.aspx
May 13, 2009 at 1:21 pm
SQL Binary files will reside on each node of the cluster, all other files should be on shared drives (SAN) including the Master.mdfs. Not sure if your D Drive...
May 13, 2009 at 1:16 pm
Oh you poor soul.
I recently had the same issue at my previous job. It was so bad we failed over ever night just to clear the memory issues.
It turns...
May 13, 2009 at 1:09 pm
I am going to assume that you do not have a base line of performance values yet. If that is the case, I would capture this information around the...
May 13, 2009 at 1:04 pm
I do this every week for our developers.
Step one: Restore database as is to a machine with enough disk space.
Step two: Strip out the records that the developers...
October 28, 2008 at 6:38 am
Viewing 15 posts - 46 through 60 (of 66 total)