Viewing 15 posts - 1,606 through 1,620 (of 2,612 total)
1 million entities with 40 columns - 6 of the columns are address information and half of the entities have two addresses - 1 column is a phone number and...
May 13, 2008 at 4:52 am
Here are two options. The first is just using left joins and is relatively simple. Because your LIKE starts with a wildcard, you will end up with table...
May 13, 2008 at 4:44 am
Making one table per session is probably going to cause more performance problems and other issues than it will solve.
You should have no issues with a header / detail table...
May 12, 2008 at 1:17 pm
I think you want to use a transaction save point:
[font="Courier New"]Create Table #BPTest(id int)
begin try
begin tran OuterTran
Insert into #BPTest values (1)
...
May 12, 2008 at 1:08 pm
I tend to use backup / restore rather than snapshot replication.
Since the backups are already happening (assuming you are using SQL backups) there is little or no additional load on...
May 12, 2008 at 12:43 pm
Don't use a trigger for this.
If you post the DDL or even some sample DDL, we can help you qith the query.
I don't think you need a union, you probably...
May 12, 2008 at 12:29 pm
I meant you should actually change the collation setting for your column - if the sort and sensitivity change will not break anything else.
If you do what you are suggesting,...
May 12, 2008 at 12:16 pm
If you use views as suggested, you could give access only to the views. If you create a SQL login for just this process and give the login only...
May 12, 2008 at 7:25 am
Specify an accent insensitive collation:
[font="Courier New"]CREATE TABLE #tmp (c varchar(30) COLLATE SQL_Latin1_General_CP1_CI_AI NULL)
INSERT #tmp VALUES ('The Coleg Sir Gâr')
SELECT * FROM #tmp WHERE c like '%gar%'[/font]
May 12, 2008 at 7:24 am
You can give permissions (add a login to your server) through SQL Logins, or through NT Authenticated logins. An NT Authenticated login can be a user or a group...
May 12, 2008 at 7:03 am
You will need to give the logins access to both databases.
May 12, 2008 at 7:00 am
It is still worth handling multiple rows. You have the necessary code. If you don't do it now, when you have a process that inserts multiple records you...
May 12, 2008 at 6:04 am
I think the last post hit it. I think you used expressions on your container and set the variable name to be the file path. I would suggest...
May 12, 2008 at 6:02 am
I'm basically just lazy.
I even have a good idea today - I wish I were a bit more motivated.
May 9, 2008 at 1:18 pm
Don't underestimate the value of simple eye-candy.
I once had a bunch of users complaining about the time it took an ETL process to run (it was about 3 minutes). ...
May 9, 2008 at 1:15 pm
Viewing 15 posts - 1,606 through 1,620 (of 2,612 total)