| Thread | Last Post | Replies |
|
| Conditional data copy SQL Server to Oracle | 30 Apr 2008 18:03 GMT | 1 |
I wonder if anyone could offer some guidelines on the following problem? I need to transfer records from a SQL Server table to an 'equivalent' Oracle table; however if the primary key for any record already exists
|
| How to Move a SQL Server Database? | 30 Apr 2008 16:49 GMT | 5 |
I have a database that I created as a database file, and then later attached it to SQL Server. I've decided I don't want this database file in my project folder hierarchy and would rather move it somewhere else, preferably to the default location
|
| Select date in british format | 30 Apr 2008 01:51 GMT | 2 |
I am able to extract dates in the correct format i.e. SELECT CONVERT(VARCHAR(8), GETDATE(), 3) => dd/mm/yy My issue is that my users are selecting a date in this format and I
|
| Open license - where is key? | 29 Apr 2008 19:36 GMT | 1 |
I bought an open license for SQL 2005 Standard Edition and it is listed in my eOpen account and I have access to the software download but there is no install key listed. Is this normal/do I need one? Licenses for other products have keys listed.
|
| SELECT * vs SELECT col1, col2 | 29 Apr 2008 19:30 GMT | 14 |
I know that in order to reduce network traffic you should always select only the columns you require but I have a stored procedure which must **always** return all columns from a specific table. When returning all columns from a table is there any performance gain (or
|
| COLUMNS_UPDATED() with triggers | 29 Apr 2008 14:01 GMT | 2 |
I wish to make my trigger more efficient in that it only processes columns that have actually changed. I am currently processing 9 columns unconditionally. I found UPDATE() function that returns true if a column has changed,
|
| Help w/math Pls | 29 Apr 2008 13:38 GMT | 5 |
I've the following table structure: Srv_Cost, Srv_Date_In, Srv_Date_Out. I need to monthly spread the cost throughout the contract period and then sum the totals. SELECT SUM(Srv_Cost / DATEDIFF(M, Srv_Date_In, Srv_Date_Out)) AS
|
| osql licensing | 29 Apr 2008 06:42 GMT | 2 |
SQLServer 2000 Personal Edition SP4 Simple Question: I have a small environment with one GUI computer and one Database computer. I have one license for SQLServer 2000 Personal and Standard Editions (using
|
| beginners question... | 28 Apr 2008 23:16 GMT | 2 |
i have created my site, got it ready for upload and even found out that i need to create my d-bases online BEFORE i upload them... (stop laughing) my question is this... how do i configure my connection string so that my asp.net pages will access
|
| When is Access the best solution? | 28 Apr 2008 18:27 GMT | 4 |
In a multi-user scenario, where you would have up to four users accessing the database, when would Access be the best overall solution?
|
| How to show Median in a GROUP BY clause? (AVE works, Median doesn' | 28 Apr 2008 17:55 GMT | 2 |
We are using SQL Server 2000. I have already learned that there is no MEDIAN, or MODE function to go along with the AVE... I've also found several methods of computing Median. The one I like best is: -- Apologies for not citing the source... I lost the website and the
|
| Database Mirrioring - Disconnect | 28 Apr 2008 13:55 GMT | 1 |
Dear professional, I want to ask one question regarding Database Mirroring. For last 1 year databse mirroring works fine and suddenly the mirroring status changed to disconnect.
|
| Multiple instances wants first available record | 28 Apr 2008 09:51 GMT | 3 |
I have a MSSQL database that stores data for a laser marking system. The main table OrderNo nvarchar LaserId int
|
| Select CASE returning NULL value | 26 Apr 2008 18:44 GMT | 1 |
I have the following CASE statement in a view: (SELECT CASE WHEN ISNULL([dbo].[tblContact].[JobTitleID], NULL) = NULL THEN [dbo].[f_ContactNameFL]([dbo].[tblContact].[ContactID])
|
| table trigger just hangs | 26 Apr 2008 04:04 GMT | 4 |
I have a UDF that cleans a field of control characters and I use it like this select dbo.udf_CleanAlphaNum(Address1) as Address1
|