Viewing 15 posts - 9,331 through 9,345 (of 9,398 total)
In the original post, it's noted that there is a base table and 10 children. I'd bet there's a missing index on the foreign key of at least one...
February 21, 2013 at 6:50 am
Agreed. Make sure you have a PK on the table. If it were me, I would make an integer field as the primary key and add a unique...
February 21, 2013 at 6:44 am
Could you provide the DDL for the tables?
February 21, 2013 at 6:38 am
Personally, I like collecting this type of data all in one place. It allows me to run reports on a single table instead of having to hit tables in...
February 18, 2013 at 8:38 am
I think your first step should be to speak with your DBA.
February 14, 2013 at 11:34 am
First create physical tables to use for long-term tracking of the size info you want. Include a datetime column. You'll only do this once when you first set...
February 14, 2013 at 10:39 am
Without reading and testing each block, it looks like you've already done the real work. From here you have two choices:
1. When your script is done, insert the data...
February 14, 2013 at 10:15 am
I believe a .NET error screen does reveal too much. It shows that you're using .NET, which is easy. However, it can also reveal things you don't want...
February 14, 2013 at 6:59 am
That's not much to go on. Do you have any details of it? DDL? Insert statement?
February 14, 2013 at 5:46 am
I also agree with Anthony completely. When we upgraded from 2005 to 2008, we installed it on a separate physical server and tested everything. I will say it...
February 14, 2013 at 5:42 am
Not trying to be ignorant here, but if you don't have access to create databases on that server, then maybe you shouldn't be creating databases on that server. Instead,...
February 14, 2013 at 5:37 am
Agreed. Unfortunately, McAfee slows everything down.
February 13, 2013 at 1:12 pm
I agree that granting sysadmin to extra users is a security concern that should be talked through. The alternatives I see are:
1. Have McAfee run as a Windows account...
February 13, 2013 at 9:37 am
set dateformat dmy;
select CONVERT(datetime, '31/12/2012 16:30');
February 12, 2013 at 9:06 am
Yes, that's how foreign keys work. You have a foreign key in a child table that references that references a primary key in the parent table.
If you're creating an...
February 12, 2013 at 8:47 am
Viewing 15 posts - 9,331 through 9,345 (of 9,398 total)