| Thread | Last Post | Replies |
|
| How to find how a record was deleted | 22 Jul 2005 08:28 GMT | 2 |
Is there a way to tell who or what process deleted a record in a SQL table. I know you can setup triggers or Profiler - but is there a way to see how a record was deleted if you DO NOT have a trigger or Profiler already running? This is SQL 2000 Standard, sp3a with default options ...
|
| WHAT DO I USE TO MAKE A TODAY DATE QUERY | 22 Jul 2005 08:24 GMT | 1 |
select no_dossier from dbo.membre where date_MAJ = GETDATE() select no_dossier from dbo.membre where date_MAJ = '2005-07-21' Both should give me the same result, yes or no? thanks
|
| [SQL-DMO] CreateFile error | 22 Jul 2005 06:56 GMT | 2 |
From Enterprise Manager I get [SQL-DMO] CreateFile error....... Whenever I try to Generate SQL Script!!! Why??
|
| Urgent Problem - Debug stored procedure | 22 Jul 2005 06:56 GMT | 2 |
I have this problems during the debug of a stored procedure: 1) In the immediate windows variabile are not set (these are nulls) 2) The step by step don't highilight the current line in yellow but highlight some empty lines
|
| Auditing user and security related activities in SQLServer | 22 Jul 2005 02:53 GMT | 2 |
On the other database types, there is an audit capability in that you record such items as failed login attempts attemtped access to tables user is not authroized to
|
| Unicode characters | 22 Jul 2005 02:09 GMT | 1 |
I am developing an application that uses SQLServer 2000 as its data repository. I have a varchar field in one of my tables, and when I do: update PolicyInfo
|
| mssql lacks | 22 Jul 2005 00:54 GMT | 5 |
I have recently decided to upgrade my programs to enable users to have mssql databases instead of access. I have since then run into many incompatibilities between their sql: access has IIF(x>y,a,b) whereas mssql hase case when (this already means
|
| Verifying Connection to 3rd Party Application | 21 Jul 2005 23:59 GMT | 1 |
Is there a way that SQL can automatically look at each users' connection and make sure it is still connected through the third party application? The problem is that when a connection to this application is not terminated properly, the SQL server is not notified of the
|
| Multiuser database application using SQLExpress | 21 Jul 2005 23:22 GMT | 3 |
I am new to SQL and I would like to create a small database application where I can store the data on a network drive and have about 10 users access the data from their desktop. I want to use SQL Express to do this, any ideas / examples of how to get this done, especially dealing ...
|
| Login failed for user null occurs after a period of time | 21 Jul 2005 22:53 GMT | 23 |
I have an identical SQL database on two machines (my machine and a web server) that links to a database on a third server (S3). When I execute a stored procedure on my machine that accesses a database on S3, it always runs without a problem. However, when I run the same stored
|
| ADODB connection with SQL2000SP3 | 21 Jul 2005 22:26 GMT | 1 |
my code is using ADODB connection to connect to SQL (Virtual) Server. the way it being done is (c++): ADODB::_ConnectionPtr m_dbConn; ADODB::_RecordsetPtr m_dbRst;
|
| Hiding System Tables when connecting with non-microsoft clients | 21 Jul 2005 17:54 GMT | 2 |
I have a user who would like to connect to a SQL Server database using SAS (a statistical application) and have the system tables not be displayed Currently, when the user connects they are shown all of the tables (including system table). We have inquired on the SAS side and ...
|
| Use of set xact_abort on/off | 21 Jul 2005 14:37 GMT | 1 |
Is there any reason to use set xact_abort on OR set xact_abort off as a rule in my stored procedures?
|
| Using NOT EXISTS in an INSERT procedure | 21 Jul 2005 14:24 GMT | 1 |
I am using the following code to insert records into a destination table that has a three column primary key i.e. (PupilID, TermID & SubjectGroup). The source table records all the pupils in a school with (amongst other things) a column (about 50) for each subject the pupil
|
| sp_ExecuteSQL in User Defined Function | 21 Jul 2005 14:07 GMT | 2 |
This is driving me crazy. I need to create a UDF that would return a TRUE/FALSE (bit) value based on a comparison it does. CREATE FUNCTION dbo.SelectedByApplication
|