Viewing 15 posts - 106 through 120 (of 312 total)
The only problem is -L is local and broadcast servers. I want those broadcast servers filtered out.
-L
Lists the locally configured servers and the names of the servers broadcasting on the...
July 2, 2010 at 12:56 pm
It needs to be something like this:
CREATE TABLE dbo.TableC
(
TableCid uniqueidentifier NOT NULL,
BookName nvarchar(50) NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE dbo.TableC ADD CONSTRAINT
PK_TableC PRIMARY KEY CLUSTERED
(
TableCid
) WITH( STATISTICS_NORECOMPUTE = OFF,...
April 28, 2010 at 12:06 pm
i don't really have an answer for you but I have to solutions for you to figure out what the issue is.
1) Use the import task from SQl and have...
April 28, 2010 at 9:19 am
select *
FROM TableA with (index(IX_TableA))
IX_TableA = Index on date
I am thinking something like this
April 14, 2010 at 3:33 pm
select a.*, b.*
from a
join b with (index(b_col1_index)) on a.id=b.id
Something like this?
April 14, 2010 at 2:37 pm
Here is the SQL function. Using a CLR can I improve this? The lists that we send in are usually guids. Most our system runs on them....
April 9, 2010 at 7:22 am
Yeah that is kind of what I was asking. Thanks
February 25, 2010 at 12:15 pm
that is a good idea. I did not think about using that since I had the wrapper on that already. I wonder if that will work. I...
January 28, 2010 at 1:27 pm
Agreed I should have used raise error when I started making these but the code architecture expects the @@error return so I screwed that up. I have over 200...
January 28, 2010 at 12:19 pm
Thats funny because we proved that wrong. If we do not check for errors it is not rolling back. We now are checking so it does roll back....
January 28, 2010 at 10:03 am
We saw a few ways.
1) Store RGB in three fields (int) that way shades can be accounted for
2) Varbinary - Store the hexidecimal Value
3) have predefined colors that are associated...
December 21, 2009 at 9:30 pm
I use BCP but usually do not use a global temp. I am curious when you dispose of the global ##temp. When you create the .txt it should...
December 21, 2009 at 5:37 pm
Yeah, I was surprised that is what is the best technique. Since I guess we are not storing shades that will work.
December 21, 2009 at 5:01 pm
Viewing 15 posts - 106 through 120 (of 312 total)