Viewing 15 posts - 4,276 through 4,290 (of 26,490 total)
Did you still have the other nonclustered index? Then, yes it would still use that index and it is fine. The reason it is faster is there is...
November 23, 2015 at 1:13 pm
PHXHoward (11/23/2015)
use databaseABC
select column5 from table10
where '_' + cast(pk as varchar) = '_10000'
pk is and integer primary key so it has a...
November 23, 2015 at 12:02 pm
Interesting that the table updates every 20 minutes but you can schedule jobs to run every second.
If the job is scheduled to run every 5 minutes but is still running...
November 23, 2015 at 9:43 am
cory.bullard76 (11/20/2015)
November 20, 2015 at 2:09 pm
ken.mulvihill (11/19/2015)
Calculating student age as of one of two reference dates
For fall term use reference date 1
For spring term use reference...
November 19, 2015 at 5:02 pm
Jeff Moden (11/19/2015)
Eirikur Eiriksson (11/19/2015)
😎
SELECT
GETDATE()
,SYSDATETIME()
,SYSDATETIMEOFFSET()
...
November 19, 2015 at 4:55 pm
Ed Wagner (11/18/2015)
GilaMonster (11/17/2015)
And now might be a good time to review the database backup processes on all your other servers. Not file backups, not disk images, database backups.
I hope...
November 19, 2015 at 3:44 pm
Cool, I just found a thread that reminds me on the Bankers Rounding Function threads.
Nice that some one else is in the flame war with this particular adversary.
November 19, 2015 at 3:38 pm
Jacob Wilkins (11/19/2015)
Let's say you're wanting only rows where the time portion is greater than or equal to 22:15 in the date range...
November 19, 2015 at 3:26 pm
jcachado (11/19/2015)
This work but i need the minutes to 🙁(create_dtim between #1/1/2015# and #1/1/2017#) and (hour(create_dtim) >= 19)
Any ideas please,
Regards,
Cachado
Only thing I would suggest is this: and minute(create_dtim) >=...
November 19, 2015 at 3:10 pm
Alvin Ramard (11/19/2015)
Lynn Pettis (11/19/2015)
November 19, 2015 at 3:07 pm
SoHelpMeCodd (11/17/2015)
November 19, 2015 at 3:05 pm
Let's ask a question in a SQL Server 2012 forum when it is really about Access. Oh, and I even prefaced my answer with "..., and if you are...
November 19, 2015 at 2:57 pm
jcachado (11/19/2015)
🙁Dont work
I use Visual studio 2012 and the table is from database access.
Thks for your help,
Cachado
Well, I suspected but hoped I was wrong. You did post your question...
November 19, 2015 at 2:53 pm
Now, assuming that you are looking for all data where the create_dtim is greater than or equal to 2015-01-01 and less than 2017-03-01 where the TIME portion for each day...
November 19, 2015 at 2:33 pm
Viewing 15 posts - 4,276 through 4,290 (of 26,490 total)