Viewing 15 posts - 1,771 through 1,785 (of 7,191 total)
Not sure I understand. Does this help? You'd have to add a where clause looking for your query text in the "text" column.
John
February 22, 2017 at 9:17 am
February 22, 2017 at 2:36 am
Is it because of your attempt to concatenate the $PSScriptRoot variable with the rest of the file path? Perhaps you need to enclose the file path part in quotes, and maybe...
February 22, 2017 at 2:20 am
Ant
Try this. It can probably be simplified and/or prettified, but it's a start. And it seems to return the correct results. The Apportion and Nominal columns don't appear...
February 21, 2017 at 9:04 am
Gaurav
Better to start a new topic for a new question. But I don't advise you to constantly change the job once it's set up. You should alter your...
February 21, 2017 at 7:44 am
Then use your favourite scripting language to search the CSV file for "0,00" and replace it with "0". Better still, explain to the user that he's wrong to want his...
February 21, 2017 at 7:31 am
I often wish that SELECT INTO didn't exist, because I find it's often abused. You've nailed it, though - create the table once and then it's always there for you,...
February 21, 2017 at 7:25 am
Please don't do this. If your 0 is accurate to two decimal places, you should show 0.00 instead of 0. Otherwise, how do you know it's not 0.04 or 0.3...
February 21, 2017 at 7:21 am
February 21, 2017 at 5:21 am
INSERT INTO @FillistOnlyTable
RESTORE FILELISTONLY
FROM DISK = 'D:\BBBACKUP_2017\RC\FEBRUAR\easyplan-drift-170216-after.bak'
John
February 21, 2017 at 5:08 am
Have you tried renaming the old database before you do the restore? Then you don't need to rename the new database, and if this problem is being caused by the...
February 21, 2017 at 4:49 am
OK, so your rowmodctr isn't anywhere near the threshold at which it updated last time. How many rows are there in your table?
Leaving all that aside, you'll still...
February 21, 2017 at 3:39 am
February 21, 2017 at 3:08 am
February 21, 2017 at 2:29 am
Having sa own all databases isn't a good security practice. Have a look at this article. We go with number 5 in the Possibilities section here. Adi is...
February 20, 2017 at 4:10 am
Viewing 15 posts - 1,771 through 1,785 (of 7,191 total)