There is no way to manually fire a trigger. The only way triggers are executed is to run an insert, update or delete statement against the table which the trigger was created on.
Have a look at the following Microsoft guide, to see if it helps. <a href=”http://technet.microsoft.com/en-us/library/ms143724(SQL.90).aspx”>Migrating Reporting Services</a>
Without the details we cannot help you with this question. Please provide the details. Thanks. I am using backup exec.
This could be because 2005 chooses a different execution plan than 2000. Have you had a look at the execution plans ? What is the service pack level of the 2005 server ? There were some situations in which 2005 used less optimal execution plans than 2000, but those bugs have been fixed in service [...]
Yes, everything in the database is migrated. So tables, views, indexes, stored procedures are brought in. Anything that is stored in the system databases are not. So DTS packages, jobs, users, maintenance plans, etc are not copied over.
Here is an example, using ADO and an ODBC data source to connect to the database: <pre> Dim adoConnection As ADODB.Connection Dim adoRecordset As ADODB.Recordset Dim connectString As String ‘-Create a new connection – Set adoConnection = New ADODB.Connection ‘-Create a new recordset – Set adoRecordset = New ADODB.Recordset ‘-Build the connection string to use [...]
yes .. tell me the problem .. its to simple for me .. reply me as soon as possible take care of your self .. Allah hafiz
If they are on the same server and same database instance then you can just reference the database by using … [DatabaseName].[DatabaseOwner].[TableName] If it is on another server then you will need to link the servers. To the best of my knowledge, and I am not a SQL expert, I think SQL Server may treat [...]
Hi Yenyen If I remember correctly – and I never do. You need Client-Access installed on your server to get IBM’s ODBC. You need to set-up an ODBC source on your server into the 400 In SQLServer make a DTS and schedule it. Phil
We probably need a little more info to fully answer this question, but here are some notes/suggestions: 1. If you are thinking of querying recent records based on the “processed flag”, the flag should be an integer or date/time value that is changed for every processed record – preferably a non-null column. If you use [...]
Both types store variable-length character strings. NVARCHAR is a VARCHAR that supports Unicode (two-byte) characters. Unicode data types take twice as much space to store the string as a character string. This is because unicode characters require two bytes to character to be able to support the full possible set of characters. This is why [...]
Answer The main purpose that cursors fulfill is traversing of the row set. Cursors can be best avoided by: a. Using the SQL while loop: Using a while loop we can insert the result set into the temporary table. b. User defined functions: Cursors are sometimes used to perform some calculation on the resultant row [...]
The authentication modes are: Windows Authentication mode = enables Windows Authentication and disables SQL Server Authentication Mixed mode = meaning that the server will accept both Windows logins and/or SQL ones Windows Authentication is always available and cannot be disabled. ————– SQL Authentication requires that the user enter a username and password (or this information [...]
Right click on the folder and select Register Server. Fill in the connection details.
No there isn’t. The SQL Service Broker can only talk to other SQL Service Broker queues. I’ve got an <a href=”http://outsidequeue2sqlssb.codeplex.com/”>open source project setup</a> which I haven’t announced yet to work on this problem.
The number of records being stored isn’t all that important at the moment. Without knowing more about the information to be stored there’s no way to help you design the database correctly.
I think this is what you need: <pre>SELECT t1.PurchaseOrderNo, SUM(t3.Cost) FROM table1 t1 JOIN table2 t2 ON t1.PurchaseOrderNo = t2.PurchaseOrderNo JOIN table3 t3 ON t2.WorkID = t3.WorkID GROUP BY t1.PurchaseOrderNo</pre>
Can you post your query ? Is the meeting information the only one than could be missing ? What version of Sql Server are you using ? —————————
INVALID_CURSOR ORA-01001 SQLCODE= -1001 You made reference to a cursor that did not exist. This usually happens when you try to FETCH from a cursor or CLOSE a cursor before that cursor is OPENed. —————- Can you post your SQL statement, so we can have a look ?
In SQL Server 7.0 or later versions, you can maintain the mapping between the logins in the master database and the users in the user database by using the SIDs. This mapping is required to maintain correct permissions for the logins in the user databases. When this mapping is lost, the logins have permission issues [...]





