Viewing 15 posts - 1,411 through 1,425 (of 1,435 total)
Alan.B (4/1/2016)
Regarding the first question - that's an excellent observation, good catch. When I was writing the function I hadn't decided how long the search pattern would be. You are...
April 3, 2016 at 11:53 pm
Alan.B (3/30/2016)
March 31, 2016 at 10:49 pm
Phil Parkin (3/30/2016)
Kevlarmpowered (3/30/2016)
March 31, 2016 at 3:28 am
Thank you Sachin and Jacob. From my initial dev testing, this appears to do the trick. Now we see if the QA team can break it ...
I...
March 28, 2016 at 9:22 am
Emil B (3/14/2016)
... the table has about 90mlns of rows with 20 GB data space and 26 GB index space ...
The cleverer peepels here will probably shoot me down on...
March 15, 2016 at 1:25 am
girl_bj (3/14/2016)
The type of column "" conflicts with the type of other columns specified in the UNPIVOT list.
The datatypes of your source columns does not match. Find the biggest...
March 14, 2016 at 3:08 am
This looks like a simple UNPIVOT requirement
CREATE TABLE #temp (
ID VARCHAR(100)
, ResultA VARCHAR(100)
, ResultB...
March 14, 2016 at 12:22 am
You could also pass the filter directly to xp_readerrorlog.
See this post ... http://www.mssqltips.com/sqlservertip/1476/reading-the-sql-server-log-files-using-tsql/
March 6, 2016 at 9:06 pm
IBeDatMan (3/3/2016)
Thanks for taking a stab at this. I modified your code for my purposes but I get an error: Syntax error, expected something like a name or a...
March 3, 2016 at 12:52 pm
The following code is a basic template that will get you what you are looking for.
DECLARE @SampleSize INT = 10;
SELECT *
FROM (
SELECT CUSTOMER_ID
...
March 3, 2016 at 1:54 am
It's been more than 10 years since I last worked on Access.
That said, the scenario you described was not an unfamiliar one.
The solution was to create a table that held...
February 1, 2016 at 3:24 am
MysteryJimbo (2/24/2012)
DesNorton (2/24/2012)
REM -- Declare the variables.
SET Publisher=PPWAPPSRV01
SET Publication=VHS
SET PublicationDB=HBH_VHS
SET PublisherLogin=sa
SET Publisherpass=*****
SET Subscriber=TESTSQL\VHS
SET SubscriptionDB=VHS...
February 26, 2012 at 11:26 pm
subscriber is listed correctly in
select subscriber_server from dbo.sysmergesubscriptions
February 24, 2012 at 8:04 am
Removed subscription at subscriber then at publisher.
Added at publisher then at subscriber.
Still no info for subscriber listed.
Gonna start following sys.sp_ trail to see what gets done. Maybe error gracefully...
February 24, 2012 at 7:43 am
MysteryJimbo (2/24/2012)
Thats where I believe it is done. I'm wondering if by overriding the host in sp_addmergesubscription its done something different. Have you tried it without that parameter?
Originally...
February 24, 2012 at 7:36 am
Viewing 15 posts - 1,411 through 1,425 (of 1,435 total)