Viewing 15 posts - 21,586 through 21,600 (of 22,184 total)
I can't see it, but somewhere in there you're adding or setting a string to a number.
Try debugging it by adding PRINT Statements to watch the values change. That's...
October 25, 2007 at 7:43 am
I don't know. I lost the training argument too. I'm looking up at the two book set of structured classes, lesson plans, documentation and tests that I had to spend...
October 25, 2007 at 7:03 am
Sincere apologies, but I can't understand the question or the requirements. A little clarification maybe? Possibly some table structures and maybe some of the code that you've tried so far?
October 24, 2007 at 6:52 am
Take everything Gail says to heart.
In addition, you might want to check out this article[/url].
It's meant as a basic introduction to checking performance of your system.
October 24, 2007 at 6:48 am
Since you can't code 'USE @Dbname' you need to do something like this:
sp_msforeachdb 'USE ?;exec master.dbo.SingleLineSpaceUsed'
But when you do this, it still runs from within the master db.
You could modify...
October 24, 2007 at 6:45 am
Tami D (10/23/2007)
October 24, 2007 at 6:31 am
Even though I didn't have all the information, despite the number of rows, it's not a very big table. I did some experimentation. They shouldn't be hitting any issues assuming...
October 24, 2007 at 6:18 am
webrunner (10/23/2007)
Jereme Guenther (10/19/2007)
I obtained a BS in Software Engineering picking...
October 24, 2007 at 5:23 am
I set up a sample using these scripts:
CREATE TABLE BigTable
(
ID INT,
Date SMALLDATETIME,
[Value] decimal(18,10)
)
WITH x AS (SELECT 1000001 AS Id
,GETDATE() AS MyDate
,42.2 AS MyValue
UNION ALL
SELECT
ID + 1
,MyDate
,MyValue
FROM X
WHERE ID <...
October 23, 2007 at 10:35 am
I've never heard of anything like that. Best guess I can come up with (and it stinks) is to run spell check on the fields after you concatenate them...
October 23, 2007 at 10:30 am
That's good.
On which columns? Is it the PK? If not the PK, is it unique? What does the query plan that is taking 3 minutes look like and how...
October 23, 2007 at 9:01 am
All three of the Inside SQL Server 2005 books provide information you'll need.
October 23, 2007 at 8:55 am
Ignore my last post. It's utterly wrong.
October 23, 2007 at 8:54 am
It is a security issue. You have to make that determination for yourself. It's off by default. Run sp_configure. It's the setting 'Remote Proc Trans' and setting it to 1...
October 23, 2007 at 6:47 am
Viewing 15 posts - 21,586 through 21,600 (of 22,184 total)