Viewing 15 posts - 1 through 15 (of 22 total)
I realize now I probably did a bad job of creating a narrow question 🙂
I ended up just going with
"what I've done so far is to add "EmployerId:<EmployerId>" to the...
December 20, 2014 at 6:17 pm
Here's a script I whipped up that illustrates basically what I'm saying
use master
CREATE DATABASE FT_TEST
GO
use FT_TEST
GO
CREATE TABLE [dbo].[EmployeeFTS](
[EmployeeID] [int] NOT NULL,
[EmployerID] [int] NOT NULL,
[Names] [nvarchar](150) NOT NULL,
[PhoneNumbers] [nvarchar](max) NOT NULL,
[Address]...
August 14, 2014 at 12:22 pm
I'm targeting an x86 installation of SQL Server on windows 2003 with an x86 build of the dll
I got a virtual machine of xp up and running and I've started...
August 24, 2010 at 1:29 am
Tonci Korsano (8/17/2010)
maybe your assembly is supposed to go inside "program files (x86)" folder.
maybe you need to build that assembly project, with visual studio, to target x64 environment in...
August 17, 2010 at 1:10 pm
it looks like it's some environment issue I'm running W7 64 bit
and it works fine to deploy for a colleague on W7 32bit
I set all the targets to x86 which...
August 17, 2010 at 11:12 am
Jonathan Kehayias (8/17/2010)
Did you deploy both assemblies to the same database? It would be pretty easy to deploy one of them to a different...
August 17, 2010 at 9:58 am
Jonathan Kehayias (8/17/2010)
Did you deploy both assemblies to the same database? It would be pretty easy to deploy one of them to a different...
August 17, 2010 at 9:40 am
Jonathan Kehayias (8/17/2010)
Do they both show up in sys.assemblies?
select * from sys.assemblies
What other references are there in either of the assemblies?
no only WOG.SQL.SHARED dll shows up because
it's in there and...
August 17, 2010 at 9:40 am
bteraberry (5/7/2010)
shane94 (5/7/2010)
From what I've read giving SQL as little as possible to "figure out" is always the preferred approach...
Throw away whatever you read that said that. That is...
May 7, 2010 at 12:53 pm
I have been listening this is all in the pursuit of knowledge
And no a colleague was suggesting the triggers and I was trying to find a solution that didn't involve...
May 7, 2010 at 12:17 pm
bteraberry (5/7/2010)
May 7, 2010 at 11:51 am
Lowell (5/7/2010)
May 7, 2010 at 11:25 am
I don't think you're understanding the issue
Lets say I have some blocks these blocks come in 3 different colors
Each time I acquire a block that block has it's OWN unique...
May 7, 2010 at 11:20 am
Yea I'm sorry I did such a bad job of setting up the data structures and explaining the scenario
There's a Client table that has a unique incrementing clientID
There's a SITE...
May 7, 2010 at 10:01 am
Yea I figure someone was going to answer that I tried to explain it well but I guess I didn't or maybe there's some other identity I need
To quote myself...
May 5, 2010 at 6:59 pm
Viewing 15 posts - 1 through 15 (of 22 total)