| Thread | Last Post | Replies |
|
| Underlying Sql returning data; View not returning anything at all ?! | 30 Dec 2008 16:27 GMT | 9 |
I have a view in a Sql Server database that is not returning any records at all. However the underlying Sql returns 3,004 records. I've deleted the view then rebuilt it but still find that "select * from
|
| Pulling a number out of an nvarchar field | 30 Dec 2008 15:49 GMT | 13 |
I have an nvarchar field that has data like: XYZ40AB WX32A 27 blah
|
| Using @@CURSOR_ROWS | 30 Dec 2008 15:44 GMT | 9 |
Using SQL 2000, I've inherited a large number of stored procedures that rely on cursors. I often would like to check the number of rows retrieved by these cursors. Studying @@CURSOR_ROWS in SQL Server Books Online, I understand that it
|
| cursor types difference | 30 Dec 2008 15:29 GMT | 5 |
please give full details of each and every types of cursors . espesiaaly about keyset cursors From http://www.developmentnow.com/g/113_2006_10_0_2_0/sql-server-programming.ht Posted via DevelopmentNow.com Group http://www.developmentnow.com/g/
|
| XML indexes decreas select performance | 30 Dec 2008 14:13 GMT | 1 |
I have table with xml filed. Using this field for select as min,group by, where. Using the data like "xmlFiled.value('(//errortime)[1]','datetime'))". My table has 1.8 Million recs . My TestDB has only 16,000 recs.
|
| NOT GETTING ANSWER | 30 Dec 2008 12:16 GMT | 3 |
ALTER PROC STUDENTS ( @M1 INT, @M2 INT, @M3 INT,
|
| Free mock tests on different technologies @TechFaq360 | 30 Dec 2008 11:30 GMT | 2 |
Check out for Free Mock tests on Oracle OCP OCA and many more @TechFaq360: http://www.techfaq360.com
|
| SQL Error handling | 30 Dec 2008 09:50 GMT | 1 |
In the SQL below I only want to /* Add to groups */ if there is no violation of the primary key (MemberEmail). How could I do this? I guess I'd also need to return an error code so that I can also let the webservice that uses the stored procedure know that the reason it didn't
|
| Handling Special Character in SQL Server | 30 Dec 2008 05:01 GMT | 6 |
I have created a Stored Procedure to Return FirstName & LastName Please find the Example EXEC sp_EmployeeName @CustID = 'SP1234' Output
|
| ABOUT designing SQLServer a Index | 30 Dec 2008 01:26 GMT | 2 |
I have a table COUPONS with a clustered index on two columns (username, insert_date). This table references table USERS on username. 1. Which is better: The clustered index on COUPONS be (username, inserted_date) or (inserted_date, username)?
|
| Temp table across stored procedures | 29 Dec 2008 23:31 GMT | 6 |
for one of my projects, I need to store values within one procedure call within one stored procedure and retrieve a subset of these rows within a second procedure. In other words, the first proc selects some rows from actual facts
|
| Trying to figure out how to use sql server for email | 29 Dec 2008 20:59 GMT | 3 |
I am dealing with an Aceess Sql Server application. I need to send emails to one or more users of system based on conditions that can be traced to sql server database table. I have not used sql server email before. I am looking for some articles/ concepts to enable me get started ...
|
| Change schema of table / proc? | 29 Dec 2008 20:17 GMT | 3 |
Is there an easy way to alter the schema of a table without having to repopulate it's data or losing data? I'd assume it'd be the same way for a sproc too? thanks!
|
| numbers table join help | 29 Dec 2008 18:21 GMT | 5 |
Let's say I have a numbers table in a temp table like follows: Idx,Key -1,10 0,9
|
| finding number range | 29 Dec 2008 17:47 GMT | 3 |
AmountId BeingAmount EndAmount 1 50 80 1 90 140 1 150 200
|