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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. vanoordt

    how to process a cube from T-SQL

    This might be an answer... If it can be done from VB, it can probably be done from other languages as well. Still it will be a lot more complicated that the few-parameter call I had in mind. Thanks. regards, Paul
  2. vanoordt

    how to process a cube from T-SQL

    Microsoft Analysis Services regards, Paul
  3. vanoordt

    Identifying the ID column

    The sp_help procedure, among many other things, gives the id column. The T-SQL code of sp_help can be seen either through the Enterprise Manager, or in the Query Analyzer with the command: exec sp_helptext sp_help in the Master database. regards, Paul
  4. vanoordt

    Identifying the ID column

    this should do: select name from syscolumns where id = object_id('<table>') and colstat & 1 = 1 taken from the sp_help procedure regards, Paul
  5. vanoordt

    how to process a cube from T-SQL

    Hello! I wonder how I can process an OLAP cube from T-SQL. You would expect there to be either some predefined (extended) stored procedures, or at least command line calls that can be used within xp_cmdshell. I can find neither in BOL. Anybody knows how to do this? Currently I am calling...
  6. vanoordt

    SQL Server goes into single user mode

    I do not have an idea why your database was switched to single user. I do know that it has nothing to do with 'truncate log on checkpoint'. Try to make another database and see if it also automatically is in single user mode. Could you be running the server in single user mode? This is done with...
  7. vanoordt

    URGENT - .trn file deleted

    Any idea what the file was used for? As far as I know .trn is not a standardly used extension in SQL Server. Was it your database logfile? The logfile is per default .ldf. Check whether there is a .ldf file for your database.
  8. vanoordt

    How to copy BOL favorites to another server

    That is my question: How to copy BOL favorites to another server? Is there a simple way? Have to do this for every course I give. Thanx.
  9. vanoordt

    Query performance?!

    The problem may be dynamic file growth of either database- or log file. This can take quite some time. Looking at file sizes before and after your operation it is easy to determine if it is. (Also the performance monitor is very instructive! What is the system doing all this time?) If file...
  10. vanoordt

    REPLICATION PROBLEM- data coruption... HELP!

    Could it be that an ODBC interface setting truncates data at 1692 characters and cause the problem? Check it out. Good luck!
  11. vanoordt

    Move a DB to another server

    Check out sp_attach_db
  12. vanoordt

    SQL 7.0 Text Field truncates to 1024 characters?

    The problem may be in your interface, e.g. ODBC, that truncates the data. So check your interface settings. The database in my view cannot be the problem. good luck
  13. vanoordt

    can Novell clients use NT authentication ??

    The Microsoft Official Curriculum for Administration of SQL Server 7 states that Novell clients can use NT authentication using Multiprotocol and NWLink (answer to review question 2.2). I'm surprised it can, or is it a mistake? And if it can, I don't understand it. Anybody who does ? Thnx.
  14. vanoordt

    MSSQL2k requires IE5, WHY?

    IE is also used by the Enterprise Manager, for instance while presenting information for a database. Right click the detais pane to see the HTML source.
  15. vanoordt

    how to convert rows to colums

    This is a very strange thing to want in a RDBMS, however you can dynamically build an SQL statement and execute it with EXEC. You can thus select all the rows and create a table with exactly that number of columns, to enter the data you can do something similar.

Part and Inventory Search

Back
Top