Viewing 15 posts - 721 through 735 (of 1,109 total)
Was this your homework? If so, you are likely wasting your money.
without error handling:
CREATE PROC conv
@fromCurrency CHAR(3)
, @amount MONEY
, @toCurrency CHAR(3)
...
October 26, 2007 at 5:55 am
Concerning licensing, from the SQL Servfer licensing FAQ http://www.microsoft.com/sql/howtobuy/faq.mspx:
You can run multiple instances of SQL Server 2005 on a single computer. Multiple instances are used by organizations that have several...
October 26, 2007 at 5:26 am
The approach Management Studio is using is simply checking the name of the database like
db.name in ('master','model','msdb','tempdb')
Regards,
Andras
October 26, 2007 at 1:51 am
If you can separate the databases into different instances, you can have an instance for Dublin, one for London.
Management Studio allows organizing servers into groups, You need to register your...
October 25, 2007 at 5:08 am
Unfortunately Management Studio does not support organizing databases in the Object Explorer.
Regards,
Andras
October 25, 2007 at 4:57 am
I'm afraid you will need to create the condition expression using OR and list all the relevant columns. On the other hand you do not need to write this condition...
October 25, 2007 at 2:56 am
Please note that the transaction log is not an audit log. This means that the user who dropped the table may not be recorded in the transaction log (this is...
October 25, 2007 at 2:39 am
Do you need the results of Statement 2 for statement 3? If it is not important that statement 2 executes successfully (since you want it to be outside the transaction)...
October 25, 2007 at 2:31 am
If your concern is the wasted space that is common when you change or drop a fixed length column, then this is is a problem when you move from varchar...
October 24, 2007 at 5:03 am
varun-jha (10/24/2007)
is thisposible to Partitioned the existing Tables in SQL Server 2005if yes tell me how with demo...
Similarly to changing filegroups you cannot repartition existing tables with a single statement....
October 24, 2007 at 1:40 am
Hi Lester,
SQL Server 7 does support all three replication types (snapshot,
transactional and merge). More specific information concerning replication on SQL Server 7 you can find on http://msdn2.microsoft.com/en-us/library/aa226168(SQL.70).aspx
Regards,
Andras
October 24, 2007 at 1:21 am
Girish KR (10/23/2007)
Hi Andras,"By backing up the log the virtual log files in the live log can be reused"
Could you please explain above statement?
TIA.
---Girish
Books online describes this better than I...
October 23, 2007 at 7:22 am
You can embed the above into a stored procedure and set that it executes in the context of dbo.
e.g.:
create proc a with execute as 'dbo' as begin
select ...
end
Regards,
...
October 23, 2007 at 2:45 am
SQL Server 2005 SP2 has introduced logon triggers http://msdn2.microsoft.com/en-us/library/bb326598.aspx. Alternatively, if you do not have SP2 you can use the service broker to implement these like on http://www.sqlservercentral.com/articles/SQLServerCentral.com/sqlserver2005logontriggers/2366/
Regards,
...
October 23, 2007 at 1:39 am
Viewing 15 posts - 721 through 735 (of 1,109 total)