Viewing 15 posts - 1 through 15 (of 22 total)
Try this:
where col1 like 'abc'def'
or
where col1 like '%abc'def%'
Jagan
March 2, 2006 at 4:14 am
Try Log Explorer from Lumigent Technologies.
Jagan
January 24, 2006 at 12:17 am
01. Select All Stored Procedures
02. Right Click, All Tasks, Generate SQL
03. Find and replace xxx_ori to xxx
04. Delete all the Stored Procedures
05. Execute the modified script from QA
Jagan
January 11, 2006 at 4:01 am
USE
master
GO
select
'Select '''+name+''' ,name, size*8/1024
from '
+name+
January 6, 2006 at 3:42 am
This Query gave me the Process and I killed the same which resolved my problem
SELECT spid, waittime, lastwaittype, waitresource
FROM master..sysprocesses
WHERE waittime > 10000
AND spid > 50
Thanks
September 13, 2005 at 12:32 pm
I am not able to find any link from MS website regarding any benchmark results for both SQL 2000 & 2005 Indexed Views since they are talking big about it.
September 12, 2005 at 1:23 pm
I am only asking if there are any standard statistics available handy with the group since I am not in a position to do this testing because of time.
September 12, 2005 at 12:50 pm
I want some rough timings for all the four operations. For example if I run Select/Insert/Update.Delete Query on the original Table and if it takes 1 Hour to Run that...
September 12, 2005 at 12:37 pm
BINGO.. Here is the DSQL which did my JOB:
USE master
GO
select 'ALTER DATABASE '+ name + ' MODIFY FILE ( name = ' +name+'_Log, FILEGROWTH = 100MB)'
from master..sysdatabases
where (name like...
September 7, 2005 at 2:47 pm
Friends,
I got out of this error by creating a INSTEAD OF INSERT TRIGGER.
Thanks
September 6, 2005 at 9:47 am
I am using SQL2000. All Check Constraints are correct. I have PK with 3 columns and the check constraint is the 3rd column. I have specified all the columns in...
September 6, 2005 at 8:47 am
We have to use VARCHAR instead of Datetime.
SELECT GETDATE(),
CONVERT(datetime, GETDATE(), 101)
This has no effect on output
SELECT GETDATE(),
CONVERT(VARCHAR(20), GETDATE(), 101)
Giving the exact output.
September 2, 2005 at 11:19 am
I am trying the same in this way which fails.
SELECT GETDATE(),
CONVERT(datetime, GETDATE(), 101)
Thanks All
Jagan
September 2, 2005 at 10:23 am
Extract_Date+Order_No+Line_No is the PK but Extract_Date is the only Check Consraint. All Columns in all the Tables are part of view with UNION ALL.
September 2, 2005 at 8:41 am
Viewing 15 posts - 1 through 15 (of 22 total)