Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Rosko

  1. Rosko

    Monthly reports (BSC)

    Thanks SQLBill, That's one way to go, but still not enough, I have to have something that collects CPU usage as well without generating to much overhead. Got any ideas? Thanks Rosko
  2. Rosko

    Monthly reports (BSC)

    Hi, Does anyone collect data from your SQL server and generate monthly reports on CPU usage, db growth and so on... What do you use for a tool? Or did you generate reports yourself and how did you go about that? How much performance degradation does continually polling generate? THX in...
  3. Rosko

    DTS : Is scripting possible???

    Another question, is it possible to determine the instancename(server\instance) where the package is saved without having to write a query? Rosko
  4. Rosko

    DTS : Is scripting possible???

    First of all? I want to keep everything on SQL server. I have a server(4 processors, 300 Gb, 4Gb Ram) with 3 instances of SQL server running. and this for the purpose of developpement, acceptation, production) On each instance the same databases. I created a few DTS packages on the...
  5. Rosko

    Moving tables between DBs

    You could use DTS to copy your table. Its an easy click and play (or click and pray) way GL Rosko
  6. Rosko

    Not able to update data using linked server

    Ok But give me the line from yor master..sysservers table Maybe this can provide me with some info Rosko
  7. Rosko

    Not able to update data using linked server

    Is your remote server name by any change beginning with a number? Show me the line in the sysservers table for this particular linked server, perhaps this can shed a light. Rosko
  8. Rosko

    SQL2000 returns null where SQL7 returns empty string

    Check the database option CONCAT_NULL_YIELDS_NULL and set it to off. Maybe this can help GL Rosko
  9. Rosko

    Not able to update data using linked server

    Perhaps you should watch out for case-sensitivity. If that does'nt solve it let us know if they are both SQL servers. Rosko
  10. Rosko

    Inserting calculated value after insert on a different table version 2

    I would create an insert trigger for your case in which I would check the inserted.F1 field for the value you are looking for and do the necessary steps from within your trigger. Gl Rosko
  11. Rosko

    Confused Users

    Business Objects is a good tool for reporting in which the users can build there own reports without any knowledge of SQL. My previous firm uses it and it works quite well Rosko PS: This is not commercially intended
  12. Rosko

    Not able to update data using linked server

    I think you have have got your identifier mixed up. Your identifier should be built like this server.database.owner_name.object_name I think your DB2 should be in second place as I gather that is the database name. Good Luck, Let us know Rosko
  13. Rosko

    Cursor for UPDATE question

    One of the possibilities is UPDATE YOURTABLE SET subtotal = (SELECT sum(T1.amount) FROM YOURTABLE T1 WHERE T1.day <= YOURTABLE1.day) This should do it GoodLuck Rosko
  14. Rosko

    IF statement error

    Oops, didn't see your never mind
  15. Rosko

    IF statement error

    I think the problem is a little higher up. I think you should use SELECT @intRecCount = (SELECT COUNT(*) FROM dbo.CRC WHERE DateTime >= @dtTodayAM and DateTime <= @dtTodayPM) instead of SELECT @intRecCount = COUNT(*) FROM dbo.CRC WHERE DateTime >= @dtTodayAM and DateTime <= @dtTodayPM...

Part and Inventory Search

Back
Top