Viewing 15 posts - 391 through 405 (of 2,038 total)
Thank god for good old C(++) and the possibility to create your own, verbose and friendly programming language:
#define Please if
#define Execute (
#define If ...
July 14, 2009 at 1:27 am
RBarryYoung (7/12/2009)
Paul White (7/12/2009)
RBarryYoung (7/12/2009)
July 13, 2009 at 5:07 am
Thanks for the feedback. Glad we could help!
July 11, 2009 at 2:47 pm
I'm quiet sure you don't intend to customize all 7.000 messages 😉
You wrote that you use a procedure to insert your rows. You can use a TRY CATCH block to...
July 11, 2009 at 10:59 am
If you try to implement your own referential integrity you might run into problems if you miss anything.
Why don't you map system error messages in front-end application?
July 11, 2009 at 10:02 am
Maybe I've been out too long yesterday...
Found the check-box and after un-selecting I could add "http:" pages. Tried again, after about 30 or 40 server redirects I end up with...
July 11, 2009 at 9:44 am
Gift Peddie (7/11/2009)
I already tried IE x32 and IE x64. Same behavior in both versions :crying:
Then it may be security try adding the url to your trusted sites in IE...
July 11, 2009 at 9:17 am
Lynn Pettis (7/11/2009)
July 11, 2009 at 8:50 am
As I told you, the length of the returned data depends on the length of the input text.
Try this:
DECLARE @v1 VARCHAR(1)
DECLARE @v2 VARCHAR(2)
DECLARE @v3 VARCHAR(3)
DECLARE @v4 VARCHAR(4)
SELECT ISNULL(NULLIF(@v1, ''), 'abcd')
SELECT...
July 11, 2009 at 8:42 am
Check BOL for "DBCC CHECKIDENT".
Just out of curiosity. Why do you want to reseed your IDENTITY? There are some reasons, but they are really rare.
July 11, 2009 at 5:25 am
dipetersen (7/10/2009)
July 11, 2009 at 5:10 am
Linson.Daniel (6/17/2009)
http://www.sqlservercentral.com/scripts/insert+script+generator/65407/
but the bad thing about mine would be the fact that I had made use of cursors....and also since it...
July 11, 2009 at 5:07 am
Hi Gift
I already tried IE x32 and IE x64. Same behavior in both versions :crying:
Hope this becomes fixed in seven.
Thanks
Flo
July 11, 2009 at 5:03 am
Seems that SQL Server determines your data type by first string value '' and selects (VAR)CHAR(1)
This works:
SELECT ISNULL(NULLIF(CONVERT(VARCHAR(10), ''), ''), 'abcd')
July 11, 2009 at 4:40 am
Viewing 15 posts - 391 through 405 (of 2,038 total)