Viewing 15 posts - 9,871 through 9,885 (of 13,460 total)
Ben have you ruled out parameter sniffing?
if your procedures have default values for some of the parameters, no matter whether you updated statistics or not, parameter sniffing could occur,...
Lowell
March 8, 2010 at 9:42 am
Lowell (3/8/2010)
halifaxdal (3/8/2010)
The records are all associated with a UserID, all non 0 value.
When the input parameter is 0, all records should be pulled out.
When the input...
Lowell
March 8, 2010 at 9:19 am
halifaxdal (3/8/2010)
The records are all associated with a UserID, all non 0 value.
When the input parameter is 0, all records should be pulled out.
When the input parameter...
Lowell
March 8, 2010 at 9:19 am
2Tall (3/8/2010)
Hi. I have 2 tables I wish to compare.PS: Would sample data, table structures help?
yeah, to get you an intelligent example, instead of a crappy peudocode example, we'd need...
Lowell
March 8, 2010 at 9:00 am
moraisilva (3/8/2010)
how I'm the connetion SQL to visual studio c++ 2005
since you posted this in SQL Compact Edition, I'm guessing you are asking how to connect to a compact database?
http://www.connectionstrings.com/sql-server-2005-ce
Data...
Lowell
March 8, 2010 at 8:41 am
there's a lot of factors in optimization; you'd really want to attach the execution plan here to get any really significant answers.
are all your joins on PK to FK relationsships?...
Lowell
March 7, 2010 at 5:54 am
Rajesh this is a common security issue. The problem is that when you access any resource OUTSIDE ofSQL server, like network shares, local hard drives,sp_OA type functions etc, it...
Lowell
March 7, 2010 at 4:42 am
Jeff i think you want to join the archiv table to the SELECt so you can exclude records already transferred;
i don't know the PK of the tables, but this should...
Lowell
March 5, 2010 at 12:22 pm
how up to date does the data need to be between servers? does it really need to be up-to-the-second as a linked server?
if it can be a day or so...
Lowell
March 5, 2010 at 10:14 am
in my experience, deleting all rows in all tables is not the right thing to do; i'm sure there are many tables that are "lookup' tables used to populate drop...
Lowell
March 5, 2010 at 8:58 am
jayanth linked servers can be notoriously slow, and there's a couple of reasons.
if you are joining two tables, i.e.
SELECT *
FROM Server1.Db.dbo.Customers X
INNER...
Lowell
March 5, 2010 at 6:42 am
masterpeice the part you are missing is how to test (along witht he DENY statement already identified.
here's a working example: note the EXECUTE AS and then the REVERT when i'm...
Lowell
March 5, 2010 at 6:27 am
if you can't infer the missing item due to the sum(0 of the dollar amounts not matching, is there some other logic to help infer something is missing?
for example, if...
Lowell
March 4, 2010 at 11:28 am
would something like this help?
if i know you are going to take 12/21/2010 off thru 12/25/2010 for the holidays, you want to generate teh 5 days of records?
--results:
myuserID ...
Lowell
March 3, 2010 at 12:13 pm
when you resotre, or when you attach, you have the option to change the database name; it would fail of course if there is already a database with that name;
if...
Lowell
March 3, 2010 at 11:25 am
Viewing 15 posts - 9,871 through 9,885 (of 13,460 total)