Search results

  1. D

    How to move MSSQL database without re-indexing keys

    They're Fasthosts. Need I say more? They actually told us that they could attach MS SQL databases when we asked them specifically prior to signing-up. Now we're going to have to move, which is very very frustrating. All their support people keep telling me over and over is that I can migrate...
  2. D

    How to move MSSQL database without re-indexing keys

    Hi, I have a MS SQL database on a shared host, and would like to move it to a new shared server host. When moving, the database should remain exactly the same, without re-indexing of primary keys etc. The trouble is, my new host will not attach a SQL Server database, and are unwilling to...
  3. D

    SELECT * WHERE month = March

    No, that's what is required.
  4. D

    SELECT * WHERE month = March

    Perfect, that's just what I was looking for, thanks!
  5. D

    SELECT * WHERE month = March

    Hi, I've got a news table in an Access database, with the following fields/datatypes: ===== tblNews ===== news_id (auto number) news_headline (text field) news_article (memo field) news_date (date field) I have a select statement from an ASP page like so: SELECT * FROM tblNews ORDER BY...
  6. D

    IE7 force PDF download

    Hi, The following code works in Firefox, but in IE7 it just spits out a screen full of weird characters: <% Response.ContentType = "application/pdf" FPath = server.mappath("pdf/portfolio.pdf") Response.AddHeader "Content-Disposition","attachment; filename=" & FPath Set...
  7. D

    Administer SQL Server 2000 database

    I've just installed 'Microsoft Server Management Studio' (a free application) which seems to be able to connect to my SQL Server 2000 databases. I'm not sure how it works though yet, since it's quite different from Enterprise Manager. So far I can't see any GUI to create tables etc. Sure it...
  8. D

    Administer SQL Server 2000 database

    Hi, I work on several SQL Server 2000 databases and usually do so with Enterprise Manager. However, since I installed Visual Web Developer Express (to help me move from 'classic' ASP development to .NET development) my version of Enterprise Manager will no longer work. I got Enterprise...
  9. D

    Complicated query

    Hi, I've got the following MS SQL tables: tblProduct ---------- Product_Id | Product_ManufacturerCode tblProductDetail --------------- ProductDetail_Id | ProductDetail_ManufacturerCode | ProductDetail_CategoryId tblCategory ----------- Category_Id | Category_Name tblProductDetail is a...
  10. D

    Complicated query

    Hi, I've got the following MS SQL tables: tblProduct ---------- Product_Id | Product_ManufacturerCode tblProductDetail --------------- ProductDetail_Id | ProductDetail_ManufacturerCode | ProductDetail_CategoryId tblCategory ----------- Category_Id | Category_Name tblProductDetail is a...
  11. D

    Allow permission to bulk insert

    Server: Msg 15247, Level 16, State 1, Procedure sp_addsrvrolemember, Line 32 User does not have permission to perform this action. It's a bulk insert permission I think. I'm on a shared SQL server, so I'm having trouble allowing permissions.
  12. D

    Allow permission to bulk insert

    Hi, I'm trying to run a procedure which does a bulk insert, but am getting a permissions error. As a total novice to SQL Server, could someone explain how to allow myself permission to do this? Thanks!
  13. D

    Bulk import data to SQL server

    Okay, it's just occured to me to that script 2 creates a stored procedure, which I then have to run for it to take effect (sorry I'm new to MS SQL).
  14. D

    Bulk import data to SQL server

    Hi, I'm using a thrid-party data provider to supply me with technical product specs for my e-commerce website. They have provided me with three very lengthy SQL scripts and several large (up to 30Mb) text files. When I run the first script it creates a bunch of tables. This executes...
  15. D

    Newby: import Access tables to MS SQL database

    Okay, I've refreshed the table pane view and there they are! Oops, didn't realise it needed to be manually refreshed. All sorted!
  16. D

    Newby: import Access tables to MS SQL database

    Okay, I think it is working actually, but it's creating all of the tables in: [mydatabasename].[myusername].[tblMyTable] I can't seem to get to this place!? Should it save them to: [mydatabasename].[Tables].[tblMyTable] ???
  17. D

    Newby: import Access tables to MS SQL database

    Hi, I'm currently migrating a website from using an Access database to an MS SQL database. I'm quite new to MS SQL so this is probably easy - I just don't know how to do it: I'm trying to import my five Access tables to a new SQL Server database. Do I have to set up the tables first before...
  18. D

    Access/ASP date format problem

    Thanks, yeah, I hacked about with my queries and found that inserting any date record into Access has to be done in US format, despite Access displaying the information in UK format. <sarcasm>Very handy</sarcasm>. I think that link is along the same lines RuralGuy, thanks.
  19. D

    Novice: How to save results of query in tsv format

    No problem, done it. From design view of query, go to Query > Make-Table Query.
  20. D

    Novice: How to save results of query in tsv format

    Hi, I'm new to queries. I've managed to build a very simple query which joins two tables. How to I save these results so that I can export a tsv file from them? (I'm using Access 2000). Thanks very much for your help...
Back
Top Bottom