| Thread | Last Post | Replies |
|
| massive log file | 25 Feb 2005 23:15 GMT | 1 |
the transaction log on a 10Mb database has shot up to 1G!, how can I reduce this and prevent this happening in the future.................
|
| index on a view | 21 Feb 2005 10:29 GMT | 3 |
I have a table (TAB) and A View with alias (VIEW) Table cod varchar 3 descr carchar 60 my view cod alias COd1
|
| how to insert characters in existing field | 16 Feb 2005 20:05 GMT | 3 |
I have a sql table with a field name model. In the model column, i have model number that start with FX%. I want to add WM before FX%. After FX can be anything, characters or numbers. The model data type is varchar.
|
| Creating an alias | 15 Feb 2005 15:54 GMT | 1 |
I have an alias that can get very long because it maintains a information of where it came from. Is there a way to alias an alias? My first thought was: Declare @T1 varchar(128)
|
| Formatting numeric fields in select-clause | 14 Feb 2005 21:59 GMT | 1 |
This is propably a very simple question, but I can´t seem to find the answer to it in the documentation. I want to format a numeric field so the result is right justified and zero-filled.
|
| Simple Query problem | 14 Feb 2005 13:38 GMT | 1 |
Sample table as follows Order ID Stock Code Status --------- ------- ------- 203 STK1 3
|
| err | 12 Feb 2005 15:57 GMT | 2 |
Hi I am having an application with mssql7 standard as backend. Some times the entry screen is hanging and nobody can save data. I am using several mster tables like supplier,customer..etc
|
| LIKE or CHARINDEX algoritms | 09 Feb 2005 04:45 GMT | 1 |
Does nobody in which algorithm the LIKE and CHARINDEX function based. Is it meaningful to write itself search algoritms based on Knuth-Morris-Pratt or Boyer-Moore algoritms to replace LIKE on CHARINDEX functions for speed exhancement ? (I itself not belive)
|
| Difference between = and IN | 08 Feb 2005 11:31 GMT | 9 |
Does anybody know what the difference is between the 'IN' and '=' operators. I am aware that '=' compares two expressions whereas 'IN' looks to see if an expression appears in a list and that a statement including an '=' operator is quicker to type than one with an 'IN'. Other ...
|
| select count (distinct X, Y) | 08 Feb 2005 11:05 GMT | 1 |
I'm trying to make this query: select count (distinct UC_CODE, SYNT, SUPER) FROM PLAN_RB WHERE HYPER IS NULL
|
| Where Statements | 08 Feb 2005 09:05 GMT | 2 |
I have some code that looks like below and after a few suggestions from a previous post I have tried passing it all through as variables but with no luck, has anyone else got any other ideas how I can speed this stored procedure up, all necessary tables have indexs????
|
| named transaction | 07 Feb 2005 11:40 GMT | 1 |
I need to make sure i do not open second transaction if one is already opened, i wanted to name a transaction, but how can i cjeck if a transaction with that name is already open?
|
| Cross Tab Query | 07 Feb 2005 11:35 GMT | 3 |
How can I cross-tab the query it was simple in MS-Access but i don't know how to do it in SQL. the thing i want is as follows: Simple Query Item Year Qty
|
| Converting a field from int to varchar during query | 04 Feb 2005 07:20 GMT | 4 |
I have a query where I am writing the following statement: select * from ...... where table1.field1 = table2.field2 ....
|
| Describing a table structure | 03 Feb 2005 10:47 GMT | 6 |
I would like to know the syntax in MS SQL 2K for describing a table, without having to expand everything in the object browser. I know in Oracle it is: desc <table_name>; Thanks,
|