Viewing 15 posts - 16 through 30 (of 46 total)
rigonzalez.fuentes (6/26/2013)
I'm working with a database of mechanical components, need to add the pictures (.tiff) of these components, someone could help me with this ...
I'm guessing that the tiff file...
June 26, 2013 at 8:42 am
TheSQLGuru (6/25/2013)
mayurkb (6/25/2013)
TheSQLGuru (6/25/2013)
June 26, 2013 at 8:26 am
TheSQLGuru (6/25/2013)
June 25, 2013 at 1:55 pm
That's what I was thinking. I do have a prototype ready with this kind of approach. The design is stored proc getting called from .net application hosted in windows scheduler....
June 25, 2013 at 1:11 pm
Thanks for the reply Sean.
1. The other applications won't be using that data, since it is old data. So it does not impact them.
2. There won't be millions of records....
June 25, 2013 at 12:56 pm
Yeah, how did I overlook that? Thanks Sean.
June 21, 2013 at 10:48 am
You will have to remove all where clauses having aggregate functions like AVG and put them into HAVING clause.
June 21, 2013 at 10:09 am
Consider normalizing these tables in future.
For now, Check if this works:
Update POTable
set Buyer = PO.Name
FROM POTable PO inner join BuyerTable BT
ON PO.Buyer = BT.Buyer
June 19, 2013 at 7:59 am
"OPTION optimize for" if not the only way to resolve sniffing issues. There are multiple ways to resolve it.
The thing that I am trying to say is first we...
June 19, 2013 at 7:45 am
ARITHABORT doesn't really do anything. It is just a setting, you can set it off from the tools->Options. Once you do that you will see the same plan that you...
June 19, 2013 at 7:04 am
It depends on the options that are selected and the sniffed parameters of the query. SQL Server caches the same query in the plan cache for different options.
Generally, the distinction...
June 18, 2013 at 7:39 am
Glad I could help.
We were also having some CPU issues with our virtual servers running on vSphere. We did not see those issues while running on hyperv.
Also, keep in mind...
June 18, 2013 at 7:11 am
1. Are these all columnnames on the table?
2. You dont need alias name here.
Look at this sample I created:
create table dbo.tbltemp
(
houseNumber int not null,
Modifier nvarchar(20),
comp as CAST(houseNumber...
June 17, 2013 at 2:15 pm
Couple more things to check:
1. Statistics are updated or not. Update them with sp_Updatestats
2. How much data is there in this server compared to other server?
3. The SQL Server does...
June 17, 2013 at 2:01 pm
Are both the servers running on the same version of the SQL Server? Initial look at the plan shows that slow execution is taking lot of time to compile a...
June 17, 2013 at 1:39 pm
Viewing 15 posts - 16 through 30 (of 46 total)