Viewing 15 posts - 616 through 630 (of 1,186 total)
I would check the memory usage on the server. If this is a long running application then it will be fighting for memory from the same hardware as SQL and...
December 31, 2004 at 6:01 am
Have you tried using an ORDER BY Year, Month in your SELECT? Don't know if this is possible with dimensions but thought I would throw it ....
December 31, 2004 at 5:58 am
IF you know how large all of your databases are (and what drives they are on) along with the logs + drive freespace would that not be close enough??
December 31, 2004 at 5:55 am
1. CAST(Field AS SMALLINT)
2. CONVERT(SMALLINT, Field)
3. Chop it up into small little bites, season liberally and bake at 350 F for 15 minutes. Taste good with a red wine
December 31, 2004 at 5:50 am
What are the multiple SELECTs doing? IF they are populating variables research SET @var = (SELECT ...)
December 31, 2004 at 5:46 am
ISNULL(val, '00') ???
December 30, 2004 at 5:07 pm
please see messages posted to http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=24&messageid=152973
December 30, 2004 at 5:20 am
Probably because both of these systems are NT based and can see the same locations as each other. I am assuming that the drive the SQL was installed on is...
December 30, 2004 at 5:17 am
One way: Bring all the records into a "staging" area and then apply the business rules from there...
December 29, 2004 at 1:18 pm
DROP = throwing the bucket away.
ERASE/DELETE/TRUNCATE = emptying the water in the bucket
December 29, 2004 at 12:51 pm
Not to my knowledge unless you have history tables with that information...
December 29, 2004 at 12:49 pm
Better mousetrap. Create an NT group (Windows or Active Directory). Assign ALL users that can get to the system to that group.
This way you already know the group and can...
December 29, 2004 at 12:48 pm
Try instead of " use ' this is proper syntax for doing this 'something' + ' ' + ..
December 29, 2004 at 5:08 am
Kenneth is absolutely correct. The system tables are updated for any given object ONLY when that object is installed/re-installed. I found out that one of our System Analysts has been...
December 28, 2004 at 6:03 am
Ok, so from the GUI you want them to be able to see current job status. And having them check sp_who2 is not an option..
Sounds like you have unrealistic requirements... ...
December 24, 2004 at 7:23 am
Viewing 15 posts - 616 through 630 (of 1,186 total)