Viewing 15 posts - 2,626 through 2,640 (of 3,678 total)
I was revisiting the problem I posed in http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=21&messageid=229499
The child table has an identity field called SelectionId which isn't mentioned in the schema at all and yet the bulk...
December 14, 2005 at 1:44 am
"Good" and "cursor" in the same sentence.
"Old Fashioned" is OK, it implies that something has worked
December 13, 2005 at 7:22 am
You can emphasise standards as much as you like with regard to XML but this is a data entry issue.
If you have required fields on a form within an application...
December 13, 2005 at 3:10 am
This might work a bit faster
DECLARE @ProcName sysname ,
@usercredentials sysname
set @procname=''
set @usercredentials='Development'
WHILE @procname is not null
begin
SELECT @procname = min(name)
FROM sysobjects
WHERE xtype='P' and name > @procname and name not like 'dt_%'
IF...
December 13, 2005 at 1:53 am
I take your point but DATTIME fields can hold values up to 31-Dec-9999. If you use a date that ridiculously far in the future then you DATEDIFF should always...
December 12, 2005 at 1:22 pm
Have you considered using LIKE %[^0-9]% as a comparison?
In otherwords if your string contains characters in that are not digits?
December 12, 2005 at 12:43 pm
I don't know how big your database is but in a live transaction database I would put the growth at fixed growth rather than a percentage.
I have come across this...
December 12, 2005 at 12:39 pm
I don't have SQL Server available as I write this but my approach would be to do a DATEDIFF between a fixed date in the future and your time col...
December 12, 2005 at 12:36 pm
I seem to remember that there was a thread about it once before but can't find it now.
The E is something to do with powers of 10. 1E1 =...
December 12, 2005 at 12:29 pm
Basically NVARCHAR is a double-byte version of VARCHAR.
Some procedures demand that an NVARCHAR is passed and sp_executesql is one of them
If you run
sp_executesql 'SELECT * from sales'
you get an error...
December 12, 2005 at 5:53 am
SmallDateTime stores date/time value accurate to the minute
DateTime stores date time values accurate to 3 milliseconds.
December 9, 2005 at 2:23 pm
Putting your code in stored procs is best practice.
Putting your SELECT DISTINCT into CommandText means that you have to grant read access to your table therefore someone with a valid...
December 6, 2005 at 9:52 am
Create a temporary table that holds the extracted IP Address from MT then do an inner join between status and your temp table
December 6, 2005 at 2:05 am
Viewing 15 posts - 2,626 through 2,640 (of 3,678 total)