Viewing 15 posts - 5,251 through 5,265 (of 13,465 total)
soundex returns 0000 whenever a non A-Z,a-z character occurs: so commas hypens, numbers or the quote all give you misleading data.
personally, i had always stripped out the values fromt...
July 5, 2012 at 1:06 pm
another longshot: if CDC is enabled for your table, you could get the values fromt hat:
--find any tables that are tracked via Change Data Capture
SELECT
name...
July 5, 2012 at 10:37 am
AAKR (7/5/2012)
Hi thanks for quick reply. this script working on sysdatabases onlyI want create user database indexes please provide the script:-)
Thanks in Adavance:-)
which script are you talking about?
did you run...
July 5, 2012 at 9:48 am
here's another version i had slapped together once;
this is specific to SQL 2008 and above, becuase it's also scripting filtered indexes and include columns;
i never bothered fleshing out the partitions...
July 5, 2012 at 9:39 am
the only way is to restore from backup.
if you were not inside an explicit transaction you created, the change would be committed immediately, with no way to reverse it.
if you...
July 5, 2012 at 9:11 am
I'm not sure either;
in my CLR where i'm using a web service, i have an added web reference;
i'm hitting the web service directly;
i'm guessing that for you, it's really indirect,...
July 5, 2012 at 8:39 am
Stewart "Arturius" Campbell (7/5/2012)
Has the method / dll that is being used correctly referenced and / or deployed? special care must oftimes be taken when other dll's are being referenced.
that's...
July 5, 2012 at 8:27 am
for the item that is running slow, can you try adding this option(optimize for ) to your query?
SELECT SUM(amount) [Total],SUM(number) [Number of Records],
...[snipped for clarity]...
) data
GROUP BY TransactionCurrency,TransactionType,TransactionCode,TransactionSubCode,SecondarySubCode
--this is what...
July 5, 2012 at 8:00 am
Yes this is all true, but I am not running it via the stored procedure- i am just running SQL code with the parameters passed directly , as in the...
July 5, 2012 at 7:33 am
yeah i'm more sure than ever it's parameter sniffing, and nothing to do with synonyms at all;
my first clue:
if @EndDate is Null
select @EndDate = getdate()
i'll assume that the costructor for...
July 5, 2012 at 6:20 am
Rin Sitah (7/3/2012)
Hi There,when the proc is run, it takes hours to complete.
Any help would be appreciated. Let me know if you need more information!
Cheers.
I'm thinking the issue has a...
July 5, 2012 at 5:42 am
I had built a prototype CLR that i thought would work, but i didn't have PGP installed on my work machine for testing.
here's the CLR code i thought would work,...
July 4, 2012 at 10:55 am
it's an excel thing: simply highlight all the cells, right click and Choose format Cells...
the popup window choose "Text" fromt e available options.
July 3, 2012 at 3:20 pm
tim.cloud (7/3/2012)
1.) A single core VM with a single drive...
July 3, 2012 at 3:04 pm
CELKO (7/3/2012)
Instead...
July 3, 2012 at 2:56 pm
Viewing 15 posts - 5,251 through 5,265 (of 13,465 total)