| Thread | Last Post | Replies |
|
| Explicitly fail a SQL Server Job in SQL Server 2000 | 07 Jul 2005 21:50 GMT | 2 |
I have a SQL Server job, which runs mutiple steps. One of the steps (step 3) looks for a record in the database. How can I explicitly fail the SQL server job if the database record does not exist?
|
| Why nested views are not recommended? | 07 Jul 2005 21:25 GMT | 2 |
I'm reading a book 'Professional SQL Server 2000 Programming' by Robert Vieira there is a recommendation: "stay away from building views based on views"
|
| User defined data type used in stored procedure parameters | 07 Jul 2005 20:46 GMT | 13 |
I have several stored procedures with parameters that are defined with user defined data types. The time it takes to run the procedures can take 10 - 50 seconds depending on the procedure. If I change the parameter data types to the actual data type such as
|
| Select Top Alters Order | 07 Jul 2005 19:04 GMT | 1 |
If i have two identical queries, with exception of top criteria Select top 1 * from photos Select top 8 * from photos why does altering the top critieria alter the order of the returned
|
| Book Recommendations - SQL Queries | 07 Jul 2005 18:55 GMT | 3 |
I need to query various SQL Server databases and am finding it quite difficult as my SQL knowledge is lousy. I'm pretty new to SQL and would require something to cover the basics but also cover some of the more advanced stuff.
|
| Subqurey returns more than one value error HELP.... | 07 Jul 2005 18:25 GMT | 7 |
My update query updates about 50 columns and they all have the same format: (Im using ADP to interact with the SQL Server) UPDATE dbo.GIS_EVENTS_TEMP SET VEH1TYPE =
|
| Last Date Stored Proc Updated??? | 07 Jul 2005 18:19 GMT | 8 |
Is there such a date/time? I see the Created date on the list of stored procs, but really want a Date Last Updated. After changing code for 3 hours, I tend to forget which procs I've worked on, and which need to be move to production.
|
| stored procs - specifying ORDER BY as a parameter | 07 Jul 2005 17:53 GMT | 4 |
hi all, hope someone can help.... i'm having trouble calling an SP where the ORDER BY operator is specified as a parameter when the SP is called my SP is.....
|
| how truncate scientific notation from Real? | 07 Jul 2005 17:27 GMT | 2 |
We've got some numbers stored as Reals which are returning values in scientific notation that we need rounded down to 3 digits to the right of the decimal. ie 8.7499999E-2 needs to return 8.75.
|
| Simple Totals Question | 07 Jul 2005 15:04 GMT | 1 |
SELECT ProblemType, Count(ProblemType) as ProbType FROM Problems WHERE RptDate >= @begDate and RptDate <= @endDate GROUP BY ProblemType
|
| ##temp table already exists problem | 07 Jul 2005 09:50 GMT | 2 |
I am using a temp table called ##temp in an SProc but often get the message that the table already exists. Could this be because the SProc is being run by more than 2 webpages at the same time? Or is it because the sProc has an error and is not getting to the drop
|
| Problem with Hyphen in Full Text Catalog Search | 07 Jul 2005 09:19 GMT | 1 |
we have a problem with the Full Text Catalog Search. We use the following SQL Statement for matching companies from a table: select company, lastname, firstname, pkcustomers, fkcustomers, location, title, fkFunktionen, TypeOfPosition
|
| RenderStream fun! | 07 Jul 2005 08:35 GMT | 2 |
I have a tricky problem with Reporting Services 2000. We can't use URLs to access reports for security reasons, so we have to use the web service. This means I have to write a viewer control (I can't wait for SQL 2005 either!).
|
| create table from another table | 07 Jul 2005 08:29 GMT | 1 |
under MSSQL8 doing this "create table tblA as ( select Name from tblB );" results in error 156 (wrong syntax near AS keyword). What is my mistake? thanks and regards Mark
|
| newbie, problem with running soem SQL code | 07 Jul 2005 06:18 GMT | 1 |
I am new to SQL and I am having a hard time trying to figure out the following error: Msg 2812, Level 16, State 62, Server PANCHO, Line 10 Could not find stored procedure 'deletej'.
|