Viewing 15 posts - 31 through 45 (of 55 total)
Suppose We have Following Situation
SERVER 1
1. Take Full Backup of Main Server. Date 2010-03-01
2. Take Differential Backup of Main Server. Date 2010-03-02
3. Take Differential Backup of Main Server. Date 2010-03-03
SERVER...
March 3, 2010 at 10:00 pm
I Want a Backup copy of that portion of data which is change since last any type of backup(full or differential).what is the name of this type backup? may be...
March 3, 2010 at 6:26 am
Why U need For Store Tempdb In Memory???
If U want to work with temp table which must be placed in memory for fast access.u can use table variable instead of...
January 28, 2010 at 11:03 pm
Thanks for Your Reply.............
Here we define some table and rules.
Suppose I Have An Item Table Which Is As Follows.........
M Item
Item IDItem Name Sale...
January 21, 2010 at 11:11 pm
select * from sys.syslogins
Hope this query give you your desire result.
it contain all log in name role associated with log in name,
try it
November 28, 2009 at 4:50 am
Yes
You are right.
thanks for update me.
November 28, 2009 at 12:59 am
select * from information_schema.columns where column_name='your search column name'
Place Your search column name in condition and find your desire result.
November 28, 2009 at 12:20 am
combined these 100 query in a single stored procedure.
and execute only one stored procedure from your application.
November 27, 2009 at 11:27 pm
Your Statement Is
select @tablename = (select Name from Sysobjects where Name like 'queue%' and type = 'U')
set @0=0
set @execstring = 'Update ' + @tablename +
'set xcheckout = ' + @0
You...
November 27, 2009 at 10:23 pm
Click On Topic Option in Right Upper Coordinate of your windows and select subscribe topic and choose your desire method of subscription.
November 27, 2009 at 3:55 am
YOU CAN TAKE INFORMATION BY THESE QUERYs
select * from information_schema.tables where table_type='base table'
select * from information_schema.columns where column_name='field name'
select * from information_schema.KEY_COLUMN_USAGE where column_name='field name'
Arrange These according your need
November 25, 2009 at 4:12 am
DBCC DBREINDEX
Example :-
Rebuild all of the indexes on the authors table with 80% fill factor.
DBCC DBREINDEX (authors, '', 80)
November 25, 2009 at 4:06 am
thank for reply
Copy File One Place to other take more time. and some time it corrupted due to network problem.send this file using ftp is also painful work.we can not...
November 25, 2009 at 3:56 am
Viewing 15 posts - 31 through 45 (of 55 total)