Viewing 15 posts - 1,891 through 1,905 (of 1,988 total)
At some point you have to trust the application not to send you malicious data, once again that doesn't mean that end users of the application should be sending commands...
October 9, 2014 at 2:07 pm
What exactly are you trying to monitor, the amount of space the log is taking up or the amount of free space on that drive?
October 8, 2014 at 10:50 am
Well technically you could find all the user logins that don't have strong passwords enforced on them, enable that for all the logins then force them to change their password...
October 8, 2014 at 9:35 am
Getting experience is nifty and all but being stuck supporting what is soon to be 15 year old software sucks. It might a form of job security but it's...
October 7, 2014 at 1:40 pm
What exactly is the goal of your test and QA environment? Do you need just the database structure or do you actually need the production data in that environment?...
October 6, 2014 at 10:38 am
Do you have a technical contact on their end you can get to run your first query locally and see if it lags on their end as well(if so it...
October 2, 2014 at 12:40 pm
Okay yeah there's nothing stopping you from doing that, if you took that idea and used it to build however many select statements you were going to run that for...
October 1, 2014 at 10:01 am
Yes potentially you could do that, all that loop is doing is building a select statement, but once again keep in mind the more you add in the more columns...
October 1, 2014 at 7:33 am
The basic idea would be something like,
CREATE TABLE #test_table (COL_ONE varchar(30), COL_TWO varchar(30), COL_THREE int)
INSERT INTO #test_table
SELECT 'test1', 'c', 1
UNION
SELECT 'test1', 'b', 500
UNION
SELECT 'test2', 'a', 2
DECLARE @sql varchar(max),
@col_three int
DECLARE temp_con...
September 30, 2014 at 11:53 am
That's not terribly hard to set up but your result set will have a huge number of columns very fast if there's any large range of data you're looking at.
September 30, 2014 at 11:12 am
Alvin Ramard (9/29/2014)
SSIS offers new ways to do things, so I would rebuild each package from scratch. With each package, I would...
September 29, 2014 at 1:54 pm
Excel loves to mangle numbers, try selecting the columns you are importing to and changing the formating to Text.
September 29, 2014 at 8:15 am
A more true answer would be, most people just don't need every possible feature installed and all of the above reasons are benefits.
September 26, 2014 at 8:27 am
spectra (9/26/2014)
BWFC (9/26/2014)
spectra (9/26/2014)
>>>>Remove the CONVERT and you'll be doing the date range check you want.how do you convert 26/09/2014 to Date ?
then you can use Cast(CreatedOn as date)
No.......you misunderstood...
September 26, 2014 at 8:16 am
Viewing 15 posts - 1,891 through 1,905 (of 1,988 total)