Viewing 15 posts - 331 through 345 (of 499 total)
Jack Corbett (6/2/2009)
Steve is getting roasted by Adam Machanic for publishing the article because Adam thinks the concept is crap (My interpretation and summary of what has been said).
No reason...
June 2, 2009 at 12:20 pm
Thanks Lynn
Your solution is correct - I didn't examine my own test data thoroughly enough. :blush:
June 2, 2009 at 11:31 am
Hi Vijay,
I don't know a tutor, but I learned loads about SSIS when I needed to from Brian Knight - he has a website with lots of video tutorials. ...
June 2, 2009 at 8:29 am
My advice.
Never have production and development DB's on the same SQL Server. Its just too easy to make mistakes
Have a completely separate machine for development DB's.
I...
June 2, 2009 at 7:30 am
Hi - I can't answer all your questions but here's what I have done.
What are objects I have to backup after encrypt my columns?,to prevent losing of my encrypted data...
June 2, 2009 at 7:10 am
Separation of databases is usually along the lines of business function. If you only have one business function, then one database may be a suitable option. If you...
June 2, 2009 at 5:59 am
Hi FredS
Its really a matter of business knowledge of how your company will use the data.
I did a lot of work in the insurance industry, and a common factor seemed...
June 2, 2009 at 4:16 am
SELECT E.EmpRow FROM (
SELECT Name, Name AS EmpRow FROM EMP
UNION ALL
SELECT Name, CONVERT(varchar(10), AGE) AS EmpRow FROM EMP ) AS E
ORDER BY E.NAME, E.EmpRow...
June 2, 2009 at 3:59 am
There is a command line utility SAC - you can export and import settings using that - Ii'm not sure if its available in the Express edition though, See if...
June 2, 2009 at 2:10 am
Try GETDATE()
insted of date(now)
If that doesn't work, post the error you are getting.
June 2, 2009 at 2:02 am
Try this
select name, age from emp
June 2, 2009 at 1:42 am
and Welcome to the Forum.
Ask anything you want, there's always someone here willing to help 😀
June 1, 2009 at 6:25 am
Very interesting question.
I think if the table is likely to be accessed frequently without retrieving the blob data, such as reporting, listing, that kind of operation - then...
June 1, 2009 at 5:46 am
Refer to
"DBCC SHRINKFILE"
in books online. This is how you'd script it in T-SQL, however I'd read up on it first to see if its really what you need.
In...
June 1, 2009 at 5:22 am
sp_change_users_login 'Report'
rings a bell, from memory.
May 28, 2009 at 4:00 pm
Viewing 15 posts - 331 through 345 (of 499 total)