Viewing 15 posts - 6,211 through 6,225 (of 7,429 total)
Depends. One of the biggest things you should try to avoid is using tables simple because you don't want to add to drive access if possible. I would use declared...
April 30, 2002 at 5:31 am
quote:
How do you get the value of a particuilar column of the currently updated row.
...
April 30, 2002 at 5:25 am
PK to FK constraints are handle quite well with cascade but you should make sure to test the effects for you setup before you put in production.
"Don't roll your eyes...
April 30, 2002 at 5:21 am
Most of the tools I have seen either are for hardware or capture queries to play back to the server which profiler can do. Best I have ever done to...
April 30, 2002 at 5:20 am
After a raiserror you must issue a return.
Ex.
if @str IS NULL
BEGIN
RAISERROR('You must enter a search string',16,-1)
RETURN
END
RestOfCode...
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston...
April 30, 2002 at 5:10 am
Has to be some sort of rights issue with either your client or the way SQL accesses your box. This is the checklist of items from Microsoft one the configuration,...
April 30, 2002 at 5:08 am
I have seen some odd errors with SQL in regards to outputs and number levels. Not heard of anything like this being a problem here but some things to check...
April 30, 2002 at 4:58 am
Note on app security when embedding the password to a single account inside. If you are real concerned with security a few things to keep in mind about apps are...
April 30, 2002 at 4:54 am
Don't know of a specific product as most I have seen are specific to a particular database. Whatare the two sources and how do you want to do it based...
April 29, 2002 at 5:59 am
I do believe the log files verify commited transactions so that a file can be restored idenpendently. However I have not tested and just cannot do so right now. Test...
April 29, 2002 at 5:57 am
Well that would at least explain the 2 Gb's free. Check out what all SQL is doing and looking and task manager how sharp did the memory climb (fast or...
April 29, 2002 at 5:54 am
Ok I have never worried about this since after my last differential for the week I truncate the logs anyway. However I keep hearing and too myself thought the Log...
April 29, 2002 at 5:42 am
Also make sure when you add them back add the clustered first then non-clustered. Reason is every time a clustered index is dropped and added all existing non-clustered indexes are...
April 29, 2002 at 5:34 am
The a combo change of both of our codes should help.
SELECT
*
FROM
(
SELECT
[No],
ITEMCODE,
AMT,
AMT + (SELECT ISNULL(SUM(AMT),0) FROM Sl iT WHERE iT.AMT > oT.AMT AND iT.SL_NO > oT.SL_NO) as cummulative
FROM
Sl oT
)...
April 29, 2002 at 5:18 am
Not sure if you did this setting but from SQL BOL /3GB swtch parameter info
Using AWE Memory on Windows 2000
Microsoft® SQL Server™ 2000 Enterprise Edition uses the Microsoft Windows® 2000...
April 29, 2002 at 5:12 am
Viewing 15 posts - 6,211 through 6,225 (of 7,429 total)