Viewing 15 posts - 4,396 through 4,410 (of 5,103 total)
You haven't said anything about What happens if both ranges are overlapped or similar nor what is the pk of the table so under too many assumptions I am going...
September 9, 2004 at 8:45 am
I strongly suggest you to leave that to the Presentation (Report or Client app) side. But just for the fun of it here is an example on how to do...
September 9, 2004 at 8:29 am
tymberwyld, You are correct and the rest are also correct just you are both talking about different things. Table-value functions are executed...
August 31, 2004 at 8:20 am
There are A LOT of things left out here:
1. If your stored procedures are supposed to carry out the audit trail capabilities you will be MIXING Audit Logic with Business like...
August 30, 2004 at 6:17 pm
If you plan to follow the above Idea do it
THIS WAY:
CREATE PROCEDURE MasterXRef
AS
CREATE TABLE XRef123 (recordID int NULL,.. etc)
CREATE TABLE XRef456 (recordID int NULL,.. etc)
INSERT INTO XRef123 EXEC sp_XRef123
INSERT INTO XRef456 EXEC...
August 30, 2004 at 3:51 pm
personally I prefer lower case too
August 30, 2004 at 3:32 pm
Well if you are doing all that, then just save a link to the xml file and let the client side do the XPath if needed
Anyways glad you make it work...
August 30, 2004 at 2:55 pm
I am sorry to be a bad news delivery boy but this is how it goes:
1. Text Columns are one of the most Inflexible features in SQL Server
2. It is impossible...
August 30, 2004 at 2:31 pm
You may say what you want but IMHO EVERYTHING gets a hit when an autogrow happens. Maybe not on a toy 1mb database but on realworld 100GB+ you will for...
August 23, 2004 at 7:26 am
I don't understand very well what you are trying to accomplish but this is shot in the dark
CREATE TRIGGER [HelpdeskNewUser] ON dbo.Helpdesk
AFTER INSERT
AS
if @@ROWCOUNT = 0
return
set nocount on
INSERT...
August 10, 2004 at 2:27 pm
I am going to code what you asked for just for the fun of it but I STRONGLY recommend you to redesing your tables to a 3NF
Note that there can not...
August 10, 2004 at 2:01 pm
Actually is doing exactly what you told it to. One month means that if you change the month on the same date and that date exists then it should return...
August 2, 2004 at 6:47 pm
I don't know what you meant by "distributing" but may i suggest you PRINT the diagram to PDF with adobe pdf writer? If all you want is to document the...
July 30, 2004 at 7:33 am
you mentioned that you are using stored procedures. There are a couple of things you can do.
1.Add an extra parameter to them for enabling/disabling logging. create a logging table and...
July 27, 2004 at 8:08 pm
I personally have tried with 4 concatenation of nvarchar(4000) and it WORKS
July 27, 2004 at 11:57 am
Viewing 15 posts - 4,396 through 4,410 (of 5,103 total)