Viewing 15 posts - 24,781 through 24,795 (of 26,486 total)
The only other question I have, are there primary keys defined on the tables as well?
😎
May 16, 2008 at 11:28 am
This is the way you should do it:
if exists(select object_id(N'tempdb.dbo.##tmp_mj_jobSync'))
drop table ##tmp_mj_jobSync
Select * into ##tmp_mj_jobSync from mj_jobSync
😎
May 16, 2008 at 11:22 am
This?
If exists (select top 1 * from ##tmp_mj_jobSync)
Drop table ##tmp_mj_jobSync
Select * into ##tmp_mj_jobSync from mj_jobSync
Actually, there is something better, but I have to find it... Stay Tune.
😎
May 16, 2008 at 11:10 am
I think this is what you are asking for, but realize that @FinalData will not reset to 1 when EmpNo changes. If that is also a requirement (not stated...
May 16, 2008 at 10:49 am
If you have this table in a development environment, have you tried creating an index like this:
create index IX_DateColCol1Col2 on dbo.BIG_table (
datecol asc,
...
May 16, 2008 at 10:16 am
Here is the sample data you provided:
EmpNo PerDate PerformanceData GrossData FinalData
1 01/10/2006 1.4534...
May 16, 2008 at 9:48 am
re_dean_illumina (5/13/2008)
May 13, 2008 at 3:18 pm
If you look in BOL you'll find all the information you want and were afraid to ask about the table backupset.
You will find there that the file size shown in...
May 13, 2008 at 2:02 pm
I like photography, just haven't really been into it lately. Was really into it while in junior high school. Had a darkroom at home and everything. Only...
May 13, 2008 at 12:10 pm
achaudhr (5/12/2008)
I tried to create it said full text searching not enabled then I enabled it via
sp_fulltext_database @action='enable'
then tried...
May 12, 2008 at 4:30 pm
You may want to consider full-text index.
😎
May 12, 2008 at 12:52 pm
achaudhr (5/12/2008)
One example of the query I am using on the view is:
select BibNumber from [vw_TypesOnlinePeriodicalsJoin]
where TiQueryValue...
May 12, 2008 at 11:11 am
Also depends on the position you are being interviewed for:Database Developer vs Database Administrator as well as level Junior, Mid, or Senior. That would also impact the correctness of...
May 9, 2008 at 11:33 am
That is the RTM version. You need to download and install SP 2.
May 9, 2008 at 10:18 am
Viewing 15 posts - 24,781 through 24,795 (of 26,486 total)