Viewing 15 posts - 871 through 885 (of 1,109 total)
sindhu_sing (9/24/2007)
I don't have the sql server agent in my version...so how can i create jobs...
September 24, 2007 at 8:29 am
Lester Policarpio (9/18/2007)
So for the fullrecovery to take effect (after shifting from simple to full) I need to make a full backup?
Hi Lester,
this is correct. If you switch from simple...
September 24, 2007 at 6:54 am
Hi Pravin,
As far as I know there is no equivalent to schema_ver in 2005. The only thing that is similar is the modify_date of the sys.objects table I mentioned above.
Regards,
...
September 24, 2007 at 6:37 am
You can use UNION ALL to add the result of a query that returns the totals only.
You will probably want to order the whole union all statement if you want...
September 24, 2007 at 2:43 am
http://msdn2.microsoft.com/en-us/library/ms190612.aspx
is a good starting point about learning the basics about transactions.
Regards,
Andras
September 19, 2007 at 11:30 am
This is expected behavior. let's say your transaction that modifies the data adds temporary information. E.g in case of accounts that a person has 1000000 USD
September 19, 2007 at 11:28 am
Hi Lester,
concerning the best way to schedule the backups, it depends on your requirements (whether you can live with loosing one hour/one day worth of data, ho fast do you...
September 18, 2007 at 6:54 pm
Hi Lester,
1: Does not ignore it. It uses it in case the server goes down, so the database can be recovered if it goes down unexpectedly. But this means that...
September 18, 2007 at 6:49 pm
http://msdn2.microsoft.com/en-us/library/ms179316.aspx
is a good place to start. As Noel mentioned, Books Online is a good resource to learn about filegroups.
Andras
September 18, 2007 at 5:36 pm
Hi,
you can restore the full backup only, and ignore the log backup. The disadvantage is that you will not have the data modifications since the full backup. If you...
September 18, 2007 at 12:41 pm
DDL triggers are indeed nice, but it is rather common to disable all of them before certain changes So while they are really...
September 18, 2007 at 10:14 am
Hi Pravin,
have a look at the sys.tables system view. It contains a modify_date column (it is inherited from sys.objects, which has this information for all schema objects).
You can read more...
September 18, 2007 at 8:13 am
SELECT
name FROM otherdb.sys.database_principals WHERE TYPE =...
September 17, 2007 at 11:37 am
You could use pivots to rotate the talbe, like:
SELECT Vendor,
[State],
[Monday],
[Teusday],
[Wednesday],
[Thursday],
[Friday],
[Saturday],
[Sunday]
FROM ( SELECT Vendor,
[State],
[Weekday],
Amount
FROM
September 17, 2007 at 10:26 am
SQL Server is actually right here. While we know that we are processing the first parts of the string, the select @x=@x+ ... is not a very nice thing to use...
September 17, 2007 at 8:16 am
Viewing 15 posts - 871 through 885 (of 1,109 total)