Viewing 15 posts - 1 through 15 (of 73 total)
There was no way out to get the benefit of using "copyOnly" without having this feature.... in earlier versions...
May 3, 2011 at 5:43 am
check with "restore labelonly" to verify whether the backup is taken up on disk or tape.
May 3, 2011 at 5:37 am
Use this one... I think u were missing conditions in between...
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER PROCEDURE [dbo].[DateReport]
@DateStart nvarchar(50),
@EndDate nvarchar(50),
@CompName nvarchar(50)
AS
BEGIN
declare @Query nvarchar(4000)
set @Query ='Select [year].[month],
[year].[year],
[year].[money],
Tvarizi.[money] AS TVM,
Tvarizi.BillNum AS TVB,
Tvarizi.DateOfPayBill...
December 15, 2010 at 3:05 am
It directly impacts the size of log file. For longer time the counters data is collected, interval should be more. No impact on analyzing the counters.
November 24, 2010 at 10:14 pm
U could write a proc instead of writing function with the same code.... call the proc 1st.. this proc should store the output in temp table.. then create a function...
November 23, 2010 at 1:22 am
...else it could be running under compressed folder....
November 22, 2010 at 2:12 am
Alternatively, u can write proc rather than function or include string initialization in proc and call the proc from inside sql function.... dont know whether it will work for u...
November 22, 2010 at 2:03 am
Try to rebuild one/all indexes on the table and check.... it should come... By the way, Why indexes are required if there are only 6 rows in the table....
November 12, 2010 at 6:12 am
Drop the index which was created on the column being dropped/modified.
Also check, may be index was created on coposite key, if its there... drop the index then change the datatype...
November 12, 2010 at 6:00 am
This could be useful too.... Tried to do in a small code....
--Table creation and records insertion...........
--create table aaa (name varchar(200))
--insert into aaa values ('abcdefghijklmnop')
--insert into aaa values ('bcdefghijklmnop')
--insert into aaa...
November 4, 2010 at 6:45 am
pls. go through BOL or get a good book on SQL Server... as u r doing update..... and ur requirement is to get the records....
August 7, 2010 at 3:29 am
Create 1 table that will contain 1 row for each table in the database and a datetime column that will be having last_modified_date. This table then will be updated by...
August 7, 2010 at 3:22 am
U can use Binary collation.... SQL_Latin1_General_Cp850_BIN
August 1, 2010 at 9:48 am
If u want ur Application to be redirected automatically onto the Failover Database, Google it... There r some pseudo codes available... it works like.. it checks the connectivity of the...
August 1, 2010 at 9:32 am
Viewing 15 posts - 1 through 15 (of 73 total)