Viewing 11 posts - 46 through 56 (of 56 total)
Ian, a simple example is at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sqlxml3/htm/bulkload_6bos.asp
Doesn't require diffgrams - very simple to just insert to a temporary table. I use it that way myself.
Cheers
Stephen
September 7, 2005 at 2:05 am
He's just lucky the creator didn't try an apostrophe in Edgar's
September 7, 2005 at 2:00 am
Could possibly be database permissions. These aren't as portable as some people assume, when you restore a database from one server to another. You may have similarly named users /...
September 5, 2005 at 4:23 pm
You might take a look at the NCHAR() and UNICODE() functions.
If I understand you rquestion correctly (by no means certain) you're trying to embed validation to disallow certain characters in...
September 4, 2005 at 10:48 pm
Had a similar situation at one of my employers. We used a Custom Data Extension to get in between the report and the database, and re-build the connection string on...
August 29, 2005 at 6:12 pm
I think you can also use the SERVERPROPERTY() function for this.
select convert(varchar(200),serverproperty('LicenseType'))
gives you the type of license (PER_SEAT, PER_PROCESSOR or DISABLED) and
select convert(varchar(20),serverproperty('NumLicenses'))
gives you either the number...
April 15, 2005 at 1:56 am
I'm really not a fan of soundex for a couple of reasons:
1. You don't always get what you expect - even where you'd think it was simple. Try
select soundex('knight') ...
June 22, 2004 at 3:57 am
This issue apparently is going to be addressed in an upcoming (June/July) SP of Reporting Services. See also in thread http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=150&messageid=108952
This SP is intended to give export support to...
May 18, 2004 at 6:09 pm
This issue is supposed to be fixed in an upcoming SP1 for Reporting Services (June/July 2004). At that release RS will (allegedly) export in the native binary interchange format.
May 18, 2004 at 6:06 pm
Amother useful technique is to shift the case statement to the select-list, give it an alias and then use the alias in the ORDER BY clause.
select case @Order when 'LNAME'...
November 17, 2003 at 8:25 pm
Unfortunately the example given doesn't illustrate this correctly. Try the following instead:
DECLARE @TTT TABLE (THE_ID INT NOT NULL)
INSERT INTO @TTT VALUES(1);
INSERT INTO @TTT VALUES(2);
INSERT INTO @TTT VALUES(3);
INSERT INTO @TTT...
November 4, 2003 at 7:42 pm
Viewing 11 posts - 46 through 56 (of 56 total)