Viewing 15 posts - 1,771 through 1,785 (of 6,395 total)
Generally no unless something is intercepting the command and appending the additional.
My first step would be to find the sproc in question and check that out. If that's clean...
November 9, 2015 at 2:23 am
Ed Wagner (11/6/2015)
Pain (back to obama care)
Killer
November 9, 2015 at 2:18 am
No problem Scott, here you go
CREATE TABLE [dbo].[Cache](
[Availability] [tinyint] NOT NULL,
[BasePrice] [numeric](9, 2) NOT NULL,
[Bookable] [tinyint] NOT NULL,
[BookingFee] [numeric](9, 2) NOT NULL,
[BookingFeeIncluded] [bit] NOT NULL,
[BrandId] [int] NOT NULL,
[CancellationScheme] [numeric](9, 2)...
November 9, 2015 at 2:01 am
Sounds like the application is adding the extra characters to the input string.
November 9, 2015 at 1:48 am
Jeff Moden (11/6/2015)
anthony.green (11/6/2015)
Ed Wagner (11/6/2015)
anthony.green (11/6/2015)
djj (11/6/2015)
crookj (11/6/2015)
Ed Wagner (11/6/2015)
anthony.green (11/6/2015)
Igor Micev (11/6/2015)
CATCHError
Log
Audit
Account
Bank
Fees
extortionate
Obama Care
NHS
November 6, 2015 at 8:44 am
Ed Wagner (11/6/2015)
anthony.green (11/6/2015)
djj (11/6/2015)
crookj (11/6/2015)
Ed Wagner (11/6/2015)
anthony.green (11/6/2015)
Igor Micev (11/6/2015)
CATCHError
Log
Audit
Account
Bank
Fees
extortionate
November 6, 2015 at 7:28 am
Zealous about security and they want you to use a local account? Guessing this account is a general account for everyone to use? How do they know which...
November 6, 2015 at 7:24 am
djj (11/6/2015)
crookj (11/6/2015)
Ed Wagner (11/6/2015)
anthony.green (11/6/2015)
Igor Micev (11/6/2015)
CATCHError
Log
Audit
Account
Bank
November 6, 2015 at 7:16 am
Never run into that scenario before.
Have had the code page be different so a server the Infra team setup was a US keyboard rather then UK so " and @...
November 6, 2015 at 7:12 am
Not a problem.
Noticed that the XML encoding character got stripped out as the IF tag always plays silly beggers with XML encoding
Need (spaces removed)
& # x 0 D ;
Adding in...
November 6, 2015 at 7:06 am
Nice script Lowell, just modified a little to remove the cursor
IF OBJECT_ID('[tempdb].[dbo].[#TMP]') IS NOT NULL
DROP TABLE [dbo].[#TMP]
CREATE TABLE [dbo].[#TMP] (
[ACCOUNT NAME] ...
November 6, 2015 at 6:29 am
Duplicate post
All replies to this thread http://www.sqlservercentral.com/Forums/Topic1734147-3411-1.aspx
November 6, 2015 at 2:45 am
You can run xp_logininfo against all the groups in on the server and note which groups the user is in
exec xp_logininfo 'DOMAIN\Group','members'
November 6, 2015 at 2:42 am
Viewing 15 posts - 1,771 through 1,785 (of 6,395 total)