Viewing 15 posts - 2,536 through 2,550 (of 14,953 total)
Keeping an honest boss happy is too easy to do to need explanation.
Keeping a dishonest boss happy is impossible so not worth worrying about.
So I don't really bother with attention...
December 21, 2011 at 9:15 am
I've used ASCII comparisons for that kind of thing many times.
select *
from dbo.MyTable
where ASCII(MyColumn) between 97 and 122;
The ASCII function returns the ASCII value of the left character in a...
December 21, 2011 at 9:03 am
You can also use something like RedGate's Datbase Compare to compare schema differences and script the changes. There are competing products that do the same thing.
Those are very valuable...
December 21, 2011 at 9:00 am
Another valid use of Views is refactoring. Let's say you discover through use that a particular table should have been normalized further than originally conceived, due to changing business...
December 21, 2011 at 8:57 am
Exam or interview?
Doesn't look like a standard T-SQL statement to me. You can't use a column-wildcard in a Where clause in SQL Server. Ask your prof or interviewer what...
December 21, 2011 at 8:16 am
I need the table definitions so I can write a query that will work for you.
December 21, 2011 at 6:27 am
engrshafiq4 (12/20/2011)
i am asking SSC Eights!
He correct my code in his above post.and that worked for me.
Let me explain the issue
consider i have a table
CREATE TABLE [dbo].[Cities](
[CITY]...
December 21, 2011 at 6:23 am
Do you just need the count of workdays, or do you need a list of them, or something else?
If it's a count of them, then the query would look something...
December 20, 2011 at 1:26 pm
I could give you a formula (or better yet, a calendar table solution) for that in SQL Server, but not in Excel. Have you tried posting the question on...
December 20, 2011 at 1:21 pm
The version I posted will do what you need, but it might have performance issues, mainly depending on data size.
What you're probably better off doing is a two-step insert into...
December 20, 2011 at 1:19 pm
WangcChiKaBastar (12/20/2011)
Then in what scenarios would we need to decrypt data by HASHING it if the client application cant read it ?
Non-reversible, reproducable hashing (like the SQL Server use of...
December 20, 2011 at 11:46 am
WangcChiKaBastar (12/20/2011)
I was thinking to HASH the string but then couldnt figure out...
December 20, 2011 at 11:41 am
SQLRNNR (12/20/2011)
Anybody else notice that the Headline article today has the "Editorial" pic? Is it an editorial or an article?:-D:-D
Yes.
December 20, 2011 at 11:37 am
Dev (12/20/2011)
Note to self: Read your post 3 times if Gus (qualified LOL & ROFL :smooooth:) is in the loop.
Maybe I need to add to my sig:
"You have...
December 20, 2011 at 11:10 am
Viewing 15 posts - 2,536 through 2,550 (of 14,953 total)