Viewing 15 posts - 1 through 15 (of 23 total)
replication is not a bad idea. I'll check with the person coordinating the vendors and see if it might be an issue. This will be coming to fruition...
March 28, 2012 at 4:38 pm
Jeff--
That is still a topic of discussion with the hardware folks and the checkbook folks. 🙂 I suspect that the answer will be no and that's why I'm...
March 28, 2012 at 4:02 pm
Hey guys--
Thanks for the links and aadvice. I was able to find a way to do this, but it seems like a fairly large 'kludge' that we'll have to...
October 13, 2008 at 5:00 am
I think that the first thing that you need to do is get your data into the correct format:
If you have a date variable, CONVERT or CAST it to DATETIME...
October 9, 2008 at 12:52 pm
Our end users require data to be grouped by calendar week resulting in a similar predickerment. Our implemented solution is nearly the same as that provided by michael_darrow's response...
October 9, 2008 at 11:04 am
I would have to agree that No. 3 is correct also.
January 28, 2008 at 6:47 am
IMHO one of the better single books on T-SQL and a couple of other flavors is :
"SQL CookBook" by Anthony Moliaro and published by O'Reilly.
It has good real world examples...
January 18, 2008 at 9:09 am
I find a certain shortcoming in the logic of the answer -- its the logic of an attorney not of a mathematician. 😉 I seldom reply to the QOD...
December 12, 2007 at 1:31 pm
Nita--
This is what we use:
USE your_database
GO
CHECKPOINT
GO
BACKUP LOG your_database WITH TRUNCATE_ONLY
GO
DBCC SHRINKFILE (your_database_log, 2) -- this needs to be the name of the log_file from EM
Thx --Jim
November 12, 2007 at 2:19 pm
Some interesting backgrounds! I started college in 1969 as a physics major with an interest in astronomy. Programming was included -- Fortran on punch cards! By 1972...
October 19, 2007 at 7:26 am
Sergiy--
Thank you for this solution. I will try this in our dev system today. Thanks all for your helpfulness on this issue. This is a very worthwhile...
October 19, 2007 at 6:06 am
Phil--
Good assumptions! This is a solution that will work for us. We can't always control the formatting of the barcodes because some come from outside vendors. This...
October 18, 2007 at 2:57 pm
That could be the answer! In the real world, these numbers are barcoded on envelopes and we send and receive a couple hundred thousand a month. In light...
October 18, 2007 at 7:51 am
I'd also like to add that in the real world it is seldom as easy as filtering on a date for a single table. You'll need to know whether or...
June 25, 2007 at 12:08 pm
Check this link:
http://www.sommarskog.se/sqlutil/aba_lockinfo.html
We compile this against the master datbase and it gives us a good picture of what is happening.
June 12, 2007 at 11:38 am
Viewing 15 posts - 1 through 15 (of 23 total)